Changeset 43851 in vbox
- Timestamp:
- Nov 9, 2012 2:37:14 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r43736 r43851 555 555 # Build the testcases. 556 556 VBOX_WITH_TESTCASES = 1 557 # Enable this to build vditool even if VBOX_WITH_TESTCASES is disabled 558 VBOX_WITH_VDITOOL = 559 # Enable this to build vbox-img even if VBOX_WITH_TESTCASES is disabled 560 VBOX_WITH_VBOX_IMG = 557 561 # Enables the ffmpeg module for recording test runs. 558 562 # TODO: Enable this for normal build server builds? -
trunk/src/VBox/Storage/testcase/Makefile.kmk
r41911 r43851 23 23 # probably will go away soon. Testcase only now. 24 24 # 25 if def VBOX_WITH_TESTCASES25 if defined(VBOX_WITH_TESTCASES) || defined(VBOX_WITH_VDITOOL) 26 26 PROGRAMS += vditool 27 27 vditool_TEMPLATE = VBOXR3TSTEXE … … 34 34 # 35 35 ifdef VBOX_WITH_TESTCASES 36 PROGRAMS += tstVD tstVD-2 tstVDCopy tstVDSnap tstVDShareable vbox-img36 PROGRAMS += tstVD tstVD-2 tstVDCopy tstVDSnap tstVDShareable 37 37 38 38 tstVD_TEMPLATE = VBOXR3TSTEXE … … 71 71 tstVDSnap_LIBS = $(LIB_DDU) 72 72 tstVDSnap_SOURCES = tstVDSnap.cpp 73 endif 74 75 if defined(VBOX_WITH_TESTCASES) || defined(VBOX_WITH_VBOX_IMG) 76 PROGRAMS += vbox-img 73 77 74 78 #
Note:
See TracChangeset
for help on using the changeset viewer.