Changeset 21629 in vbox for trunk/src/VBox/HostServices/GuestProperties/testcase
- Timestamp:
- Jul 15, 2009 9:22:54 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestProperties/testcase/Makefile.kmk
r18422 r21629 23 23 include $(KBUILD_PATH)/subheader.kmk 24 24 25 ifdef VBOX_WITH_TESTCASES 26 # 27 # Case conversion testcase. 28 # 29 PROGRAMS += tstGuestPropSvc 30 tstGuestPropSvc_TEMPLATE = VBOXR3TSTEXE 31 # The second define here is to ensure that the testcase will run fast, without 32 # waiting for any thread synchronisation. 33 tstGuestPropSvc_DEFS = VBOX_WITH_HGCM VBOX_GUEST_PROP_TEST_NOTHREAD 34 tstGuestPropSvc_SOURCES = tstGuestPropSvc.cpp ../service.cpp 35 tstGuestPropSvc_LIBS = $(LIB_RUNTIME) 25 if defined(VBOX_WITH_TESTCASES) && !defined(VBOX_ONLY_ADDITIONS) && !defined(VBOX_ONLY_SDK) 36 26 37 # Set this in LocalConfig.kmk if you are working on the guest property service 38 # to automatically run the testcase at build time. 39 ifdef VBOX_RUN_GUEST_PROPERTY_TEST 40 ifndef VBOX_ONLY_SDK 41 TESTING += $(PATH_tstGuestPropSvc)/tstGuestPropSvc.run 42 OTHERS += $(PATH_tstGuestPropSvc)/tstGuestPropSvc.run 27 # Set this in LocalConfig.kmk if you are working on the guest property 28 # service to automatically run the testcase at build time. 29 # OTHERS += $(PATH_tstGuestPropSvc)/tstGuestPropSvc.run 30 # 31 32 PROGRAMS += tstGuestPropSvc 33 TESTING += $(PATH_tstGuestPropSvc)/tstGuestPropSvc.run 34 tstGuestPropSvc_TEMPLATE = VBOXR3TSTEXE 35 # The second define here is to ensure that the testcase will run fast, 36 # without waiting for any thread synchronisation. 37 tstGuestPropSvc_DEFS = VBOX_WITH_HGCM VBOX_GUEST_PROP_TEST_NOTHREAD 38 tstGuestPropSvc_SOURCES = tstGuestPropSvc.cpp ../service.cpp 39 tstGuestPropSvc_LIBS = $(LIB_RUNTIME) 40 43 41 $$(PATH_tstGuestPropSvc)/tstGuestPropSvc.run: $$(INSTARGET_tstGuestPropSvc) 44 42 export VBOX_LOG_DEST=nofile; $(INSTARGET_tstGuestPropSvc) quiet 45 43 $(QUIET)$(APPEND) -t "$@" "done" 46 endif 44 47 45 endif 48 49 endif # VBOX_WITH_TESTCASES50 51 46 52 47 include $(KBUILD_PATH)/subfooter.kmk
Note:
See TracChangeset
for help on using the changeset viewer.