Changeset 50694 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Mar 5, 2014 10:03:03 AM (11 years ago)
- Location:
- trunk/src/VBox/VMM/testcase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/tstGlobalConfig.cpp
r44529 r50694 5 5 6 6 /* 7 * Copyright (C) 2007-201 2Oracle Corporation7 * Copyright (C) 2007-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 70 70 if (cch >= sizeof(Req.szName)) 71 71 { 72 RTPrintf("syntax error: the name is too long. (max %zu chars)\n", argv[1], sizeof(Req.szName) - 1);72 RTPrintf("syntax error: the name '%s' is too long. (max %zu chars)\n", argv[1], sizeof(Req.szName) - 1); 73 73 return 1; 74 74 } -
trunk/src/VBox/VMM/testcase/tstInstrEmul.cpp
r44528 r50694 5 5 6 6 /* 7 * Copyright (C) 2006-201 1Oracle Corporation7 * Copyright (C) 2006-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 51 51 || val != UINT64_C(0x200000001)) 52 52 { 53 RTPrintf("tstInstrEmul: FAILURE - Lock cmpxchg8b failed the equal case! (val=% x%x)\n", val);53 RTPrintf("tstInstrEmul: FAILURE - Lock cmpxchg8b failed the equal case! (val=%RX64)\n", val); 54 54 return 1; 55 55 } … … 60 60 || edx != 0x1) 61 61 { 62 RTPrintf("tstInstrEmul: FAILURE - Lock cmpxchg8b failed the non-equal case! (val=% x%x)\n", val);62 RTPrintf("tstInstrEmul: FAILURE - Lock cmpxchg8b failed the non-equal case! (val=%RX64)\n", val); 63 63 return 1; 64 64 } … … 74 74 || val != UINT64_C(0x200000001)) 75 75 { 76 RTPrintf("tstInstrEmul: FAILURE - Cmpxchg8b failed the equal case! (val=% x%x)\n", val);76 RTPrintf("tstInstrEmul: FAILURE - Cmpxchg8b failed the equal case! (val=%RX64)\n", val); 77 77 return 1; 78 78 } … … 83 83 || edx != 0x1) 84 84 { 85 RTPrintf("tstInstrEmul: FAILURE - Cmpxchg8b failed the non-equal case! (val=% x%x)\n", val);85 RTPrintf("tstInstrEmul: FAILURE - Cmpxchg8b failed the non-equal case! (val=%RX64)\n", val); 86 86 return 1; 87 87 }
Note:
See TracChangeset
for help on using the changeset viewer.