diff -urN vbox-clean-bk\src\VBox\Disassembler/testcase/Makefile.kmk vbox-clean\src\VBox\Disassembler/testcase/Makefile.kmk
|
old
|
new
|
|
| 20 | 20 | ifdef VBOX_WITH_TESTCASES |
| 21 | 21 | |
| 22 | 22 | |
| | 23 | ifdef __YASM_VERSION_ID__ |
| 23 | 24 | PROGRAMS += tstDisasm-1 |
| 24 | 25 | tstDisasm-1_TEMPLATE = VBOXR3TSTEXE |
| 25 | 26 | tstDisasm-1_DEFS = IN_DIS |
| … |
… |
|
| 30 | 31 | $(PATH_STAGE_LIB)/DisasmR3$(VBOX_SUFF_LIB) \ |
| 31 | 32 | $(LIB_RUNTIME) |
| 32 | 33 | |
| | 34 | endif |
| 33 | 35 | |
| 34 | 36 | PROGRAMS += tstDisasm-2 |
| 35 | 37 | tstDisasm-2_TEMPLATE = VBOXR3TSTEXE |
diff -urN vbox-clean-bk\src\VBox\Disassembler/testcase/tstDisasm-1.cpp vbox-clean\src\VBox\Disassembler/testcase/tstDisasm-1.cpp
|
old
|
new
|
|
| 136 | 136 | } aSnippets[] = |
| 137 | 137 | { |
| 138 | 138 | { "32-bit", (uint8_t const *)(uintptr_t)TestProc32, (uintptr_t)&TestProc32_EndProc, DISCPUMODE_32BIT }, |
| | 139 | #ifndef RT_OS_OS2 |
| 139 | 140 | { "64-bit", (uint8_t const *)(uintptr_t)TestProc64, (uintptr_t)&TestProc64_EndProc, DISCPUMODE_64BIT }, |
| | 141 | #endif |
| 140 | 142 | }; |
| 141 | 143 | |
| 142 | 144 | for (unsigned i = 0; i < RT_ELEMENTS(aSnippets); i++) |