Changeset 33198 in vbox for trunk/src/VBox/Runtime/testcase
- Timestamp:
- Oct 18, 2010 2:17:25 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstRTInlineAsm.cpp
r33136 r33198 880 880 i64Rc = op; \ 881 881 if (i64Rc != (rc)) \ 882 RTTestFailed(g_hTest, "%s, %d: FAILURE: %s -> %ll d expected %lld\n", __FUNCTION__, __LINE__, #op, i64Rc, (int64_t)rc); \882 RTTestFailed(g_hTest, "%s, %d: FAILURE: %s -> %llx expected %llx\n", __FUNCTION__, __LINE__, #op, i64Rc, (int64_t)rc); \ 883 883 if (*pi64 != (val)) \ 884 RTTestFailed(g_hTest, "%s, %d: FAILURE: %s => *pi64=%ll d expected %lld\n", __FUNCTION__, __LINE__, #op, *pi64, (int64_t)(val)); \884 RTTestFailed(g_hTest, "%s, %d: FAILURE: %s => *pi64=%llx expected %llx\n", __FUNCTION__, __LINE__, #op, *pi64, (int64_t)(val)); \ 885 885 } while (0) 886 886 MYCHECK(ASMAtomicAddS64(pi64, 1), 10, 11);
Note:
See TracChangeset
for help on using the changeset viewer.