Ticket #1: disasm.diff

File disasm.diff, 1.4 KB (added by Valery V. Sedletski, 9 years ago)

Disassembler

  • \src\VBox\Disassembler/testcase/Makefile.kmk

    diff -urN vbox-clean-bk\src\VBox\Disassembler/testcase/Makefile.kmk vbox-clean\src\VBox\Disassembler/testcase/Makefile.kmk
    old new  
    2020ifdef VBOX_WITH_TESTCASES
    2121
    2222
     23ifdef __YASM_VERSION_ID__
    2324PROGRAMS               += tstDisasm-1
    2425tstDisasm-1_TEMPLATE    = VBOXR3TSTEXE
    2526tstDisasm-1_DEFS        = IN_DIS
     
    3031        $(PATH_STAGE_LIB)/DisasmR3$(VBOX_SUFF_LIB) \
    3132        $(LIB_RUNTIME)
    3233
     34endif
    3335
    3436PROGRAMS += tstDisasm-2
    3537tstDisasm-2_TEMPLATE    = VBOXR3TSTEXE
  • \src\VBox\Disassembler/testcase/tstDisasm-1.cpp

    diff -urN vbox-clean-bk\src\VBox\Disassembler/testcase/tstDisasm-1.cpp vbox-clean\src\VBox\Disassembler/testcase/tstDisasm-1.cpp
    old new  
    136136    } aSnippets[] =
    137137    {
    138138        { "32-bit",     (uint8_t const *)(uintptr_t)TestProc32, (uintptr_t)&TestProc32_EndProc, DISCPUMODE_32BIT },
     139#ifndef RT_OS_OS2
    139140        { "64-bit",     (uint8_t const *)(uintptr_t)TestProc64, (uintptr_t)&TestProc64_EndProc, DISCPUMODE_64BIT },
     141#endif
    140142    };
    141143
    142144    for (unsigned i = 0; i < RT_ELEMENTS(aSnippets); i++)