Changeset 64704 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Nov 17, 2016 10:51:41 PM (8 years ago)
- Location:
- trunk/src/VBox/ValidationKit/bootsectors
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/Config.kmk
r64122 r64704 410 410 $(TOOL_OPENWATCOM_COMPILE_C_CMDS) 411 411 $(QUIET)$(VBOX_BS3KIT_KSUBMIT_OBJ_CONV) $(VBoxBs3ObjConverter_1_TARGET) "$(obj)" 412 $(QUIET)$(REDIRECT) -wo /dev/null -- $(KBUILD_BIN_PATH)/kDepObj$(HOSTSUFF_EXE) -s -f -q -o "$(dep)" -t "$(obj)" "$(obj)"413 412 endef 414 413 … … 444 443 $(TOOL_OPENWATCOM_COMPILE_CXX_CMDS) 445 444 $(QUIET)$(VBOX_BS3KIT_KSUBMIT_OBJ_CONV) $(VBoxBs3ObjConverter_1_TARGET) "$(obj)" 446 $(QUIET)$(REDIRECT) -wo /dev/null -- $(KBUILD_BIN_PATH)/kDepObj$(HOSTSUFF_EXE) -s -f -q -o "$(dep)" -t "$(obj)" "$(obj)"447 445 endef 448 446 … … 470 468 $(TOOL_OPENWATCOM-16_COMPILE_C_CMDS) 471 469 $(QUIET)$(VBOX_BS3KIT_KSUBMIT_OBJ_CONV) $(VBoxBs3ObjConverter_1_TARGET) "$(obj)" 472 $(QUIET)$(REDIRECT) -wo /dev/null -- $(KBUILD_BIN_PATH)/kDepObj$(HOSTSUFF_EXE) -s -f -q -o "$(dep)" -t "$(obj)" "$(obj)"473 470 endef 474 471 … … 504 501 $(TOOL_OPENWATCOM-16_COMPILE_CXX_CMDS) 505 502 $(QUIET)$(VBOX_BS3KIT_KSUBMIT_OBJ_CONV) $(VBoxBs3ObjConverter_1_TARGET) "$(obj)" 506 $(QUIET)$(REDIRECT) -wo /dev/null -- $(KBUILD_BIN_PATH)/kDepObj$(HOSTSUFF_EXE) -s -f -q -o "$(dep)" -t "$(obj)" "$(obj)"507 503 endef 508 504 -
trunk/src/VBox/ValidationKit/bootsectors/Makefile.kmk
r63374 r64704 244 244 bs3-cpu-basic-2.c \ 245 245 bs3-cpu-basic-2-x0.c \ 246 bs3-cpu-basic-2-32.c32 \ 247 bs3-cpu-basic-2-pf.c32 \ 246 248 bs3-cpu-basic-2-asm.asm \ 247 249 bs3kit/bs3-cmn-instantiate-x0.c16 \ -
trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-basic-2.c
r60797 r64704 45 45 FNBS3TESTDOMODE bs3CpuBasic2_iret_f16; 46 46 47 BS3_DECL_CALLBACK(void) bs3CpuBasic2_Do32BitTests_pe32(); 48 47 49 48 50 /********************************************************************************************************************************* … … 52 54 { 53 55 BS3TESTMODEENTRY_MODE("tss / gate / esp", bs3CpuBasic2_TssGateEsp), 54 BS3TESTMODEENTRY_MODE("raise xcpt #1", bs3CpuBasic2_RaiseXcpt1),56 //BS3TESTMODEENTRY_MODE("raise xcpt #1", bs3CpuBasic2_RaiseXcpt1), // !long mode is broken! 55 57 }; 56 58 … … 58 60 { 59 61 { "iret", bs3CpuBasic2_iret_f16, 0 }, 60 #if 061 62 { "sidt", bs3CpuBasic2_sidt_f16, 0 }, 62 63 { "sgdt", bs3CpuBasic2_sgdt_f16, 0 }, 63 64 { "lidt", bs3CpuBasic2_lidt_f16, 0 }, 64 65 { "lgdt", bs3CpuBasic2_lgdt_f16, 0 }, 65 #endif66 66 }; 67 67 … … 73 73 Bs3TestPrintf("g_uBs3CpuDetected=%#x\n", g_uBs3CpuDetected); 74 74 75 /* 76 * Do tests driven from 16-bit code. 77 */ 75 78 NOREF(g_aModeTest); NOREF(g_aModeByOneTests); /* for when commenting out bits */ 76 //Bs3TestDoModes_rm(g_aModeTest, RT_ELEMENTS(g_aModeTest));79 Bs3TestDoModes_rm(g_aModeTest, RT_ELEMENTS(g_aModeTest)); 77 80 Bs3TestDoModesByOne_rm(g_aModeByOneTests, RT_ELEMENTS(g_aModeByOneTests), 0); 81 82 /* 83 * Do tests driven from 32-bit code (bs3-cpu-basic-2-32.c32 via assembly). 84 */ 85 Bs3SwitchTo32BitAndCallC_rm(bs3CpuBasic2_Do32BitTests_pe32, 0); 78 86 79 87 Bs3TestTerm();
Note:
See TracChangeset
for help on using the changeset viewer.