Changeset 50694 in vbox
- Timestamp:
- Mar 5, 2014 10:03:03 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 92645
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstHandleTable.cpp
r48935 r50694 5 5 6 6 /* 7 * Copyright (C) 2008-201 1Oracle Corporation7 * Copyright (C) 2008-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 120 120 if (fCallbacks && cRetainerCalls != 0) 121 121 { 122 RTPrintf("tstHandleTable: FAILURE (%d) - cRetainerCalls=%#x expected 0!\n", __LINE__, i,cRetainerCalls);122 RTPrintf("tstHandleTable: FAILURE (%d) - cRetainerCalls=%#x expected 0!\n", __LINE__, cRetainerCalls); 123 123 g_cErrors++; 124 124 } … … 244 244 { 245 245 RTPrintf("\ntstHandleTable: FAILURE (%d) - i=%d, j=%d, RTHandleTableLookupWithCtx: succeeded with bad context\n", 246 __LINE__, i, j , pvObj, pvExpect);246 __LINE__, i, j); 247 247 g_cErrors++; 248 248 } -
trunk/src/VBox/Runtime/testcase/tstMemAutoPtr.cpp
r44528 r50694 5 5 6 6 /* 7 * Copyright (C) 2008-201 1Oracle Corporation7 * Copyright (C) 2008-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 101 101 if (aMem == NULL) 102 102 { 103 RTPrintf("tstMemAutoPtr( %d): Destructor called with NILL handle!\n");103 RTPrintf("tstMemAutoPtr(): Destructor called with NULL handle!\n"); 104 104 g_cErrors++; 105 105 } 106 106 else if (!VALID_PTR(aMem)) 107 107 { 108 RTPrintf("tstMemAutoPtr( %d): Destructor called with a bad handle %p\n", aMem);108 RTPrintf("tstMemAutoPtr(): Destructor called with a bad handle %p\n", aMem); 109 109 g_cErrors++; 110 110 } -
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.