Changeset 50694 in vbox for trunk/src/VBox/Runtime/testcase
- Timestamp:
- Mar 5, 2014 10:03:03 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 92645
- Location:
- trunk/src/VBox/Runtime/testcase
- Files:
-
- 2 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 }
Note:
See TracChangeset
for help on using the changeset viewer.