- Timestamp:
- May 23, 2009 10:14:33 PM (16 years ago)
- Location:
- trunk/src/VBox/Runtime/testcase
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/Makefile.kmk
r19947 r19948 51 51 tstRTAvl \ 52 52 tstRTBase64 \ 53 tst BitOperations \53 tstRTBitOperations \ 54 54 tstCidr \ 55 55 tstCritSect \ … … 109 109 tstRTProcWait \ 110 110 tstRTProcIsRunningByName \ 111 tst BitOperationsPIC3 \111 tstRTBitOperationsPIC3 \ 112 112 tstInlineAsmPIC \ 113 113 tstInlineAsmPIC3 \ … … 142 142 tstRTBase64_SOURCES = tstRTBase64.cpp 143 143 144 tstBitOperations_TEMPLATE = VBOXR3TSTEXE 145 tstBitOperations_SOURCES = tstBitOperations.cpp 146 147 tstBitOperationsPIC3_SOURCES = tstBitOperations.cpp 148 tstBitOperationsPIC3_CXXFLAGS = -fPIC -fomit-frame-pointer -O3 149 tstBitOperationsPIC3_DEFS = PIC 144 tstRTBitOperations_TEMPLATE = VBOXR3TSTEXE 145 tstRTBitOperations_SOURCES = tstRTBitOperations.cpp 146 147 tstRTBitOperationsPIC3_TEMPLATE = VBOXR3TSTEXE 148 tstRTBitOperationsPIC3_SOURCES = tstRTBitOperations.cpp 149 tstRTBitOperationsPIC3_CXXFLAGS = -fPIC -fomit-frame-pointer -O3 150 tstRTBitOperationsPIC3_DEFS = PIC 150 151 151 152 tstCidr_SOURCES = tstCidr.cpp -
trunk/src/VBox/Runtime/testcase/tstRTBitOperations.cpp
r19943 r19948 5 5 6 6 /* 7 * Copyright (C) 2006-200 7Sun Microsystems, Inc.7 * Copyright (C) 2006-2009 Sun Microsystems, Inc. 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 29 29 */ 30 30 31 32 31 /******************************************************************************* 33 32 * Header Files * 34 33 *******************************************************************************/ 35 34 #include <iprt/asm.h> 36 #include <iprt/test.h> 35 36 #include <iprt/initterm.h> 37 37 #include <iprt/stream.h> 38 38 #include <iprt/string.h> 39 39 #include <iprt/test.h> 40 #include <iprt/initterm.h>41 40 42 41 … … 132 131 RTTEST hTest; 133 132 if ( RT_FAILURE(RTR3Init()) 134 || RT_FAILURE(RTTestCreate("tst BitOperations", &hTest)))135 { 136 RTPrintf("tst BitOperation: fatal initialization error\n");133 || RT_FAILURE(RTTestCreate("tstRTBitOperations", &hTest))) 134 { 135 RTPrintf("tstRTBitOperations: fatal initialization error\n"); 137 136 return 1; 138 137 }
Note:
See TracChangeset
for help on using the changeset viewer.