VirtualBox

Changeset 94585 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Apr 13, 2022 10:35:01 AM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
150944
Message:

Validation Kit/unit tests: Use a dedicated build template for statically linked unit tests and output those in the validationkit/testcase directory. This leaves the regular (host, non-static) unit tests untouched. Might be optimized later to reduce the overall size of the built Validation Kit .ISO. bugref:10195

Location:
trunk/src/VBox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/testcase/Makefile.kmk

    r94576 r94585  
    970970        tstTimer \
    971971        tstRTZip
    972  PROGRAMS := $(filter-out $(VBOX_VALIDATIONKIT_UNITTESTS_SKIP),$(PROGRAMS))
    973 
    974  VBOX_VALIDATIONKIT_UNITTESTS_SKIP.win=\
    975     ntGetTimerResolution
    976  PROGRAMS.win := $(filter-out $(VBOX_VALIDATIONKIT_UNITTESTS_SKIP.win),$(PROGRAMS.win))
    977 endif # VBOX_WITH_VALIDATIONKIT_UNITTESTS_PACKING
     972
     973 VBOX_VALIDATIONKIT_UNITTESTS_SKIP.win +=\
     974        ntGetTimerResolution
     975
     976 VBOX_VALIDATIONKIT_UNITTESTS := $(filter-out $(VBOX_VALIDATIONKIT_UNITTESTS_SKIP),$(PROGRAMS))
     977
     978 ## @todo There might be a more elegant want of copying a target's stuff. Works for now.
     979 define def_unittest_valkit
     980  $(unittest)_ValKit_TEMPLATE       := VBOXR3TSTEXE_VALKIT
     981  $(unittest)_ValKit_SOURCES        += $$($(unittest)_SOURCES)
     982  $(unittest)_ValKit_SOURCES.x86    += $$($(unittest)_SOURCES.x86)
     983  $(unittest)_ValKit_SOURCES.amd64  += $$($(unittest)_SOURCES.amd64)
     984  $(unittest)_ValKit_INCS           += $$($(unittest)_INCS)
     985  $(unittest)_ValKit_INTERMEDIATES  += $$($(unittest)_INTERMEDIATES)
     986  $(unittest)_ValKit_CLEAN          += $$($(unittest)_CLEAN)
     987  $(unittest)_ValKit_NAME           := $(unittest)
     988  PROGRAMS += $(unittest)_ValKit
     989 endef
     990
     991 $(foreach unittest, $(VBOX_VALIDATIONKIT_UNITTESTS), \
     992        $(eval $(call def_unittest_valkit)))
     993
     994endif # defined(VBOX_ONLY_VALIDATIONKIT) && defined(VBOX_WITH_VALIDATIONKIT_UNITTESTS_PACKING)
    978995
    979996endif # VBOX_WITH_TESTCASES
  • trunk/src/VBox/ValidationKit/Makefile.kmk

    r94462 r94585  
    292292
    293293#
    294 # If enabled, this includes the unit tests located in the $(PATH_OUT)/testcase directory.
     294# If enabled, this includes specially built unit tests (statically linked, for guests) located
     295# in the $(VBOX_PATH_VALIDATIONKIT)/../../testcase/ directory.
     296#
    295297# This is useful if we want to run those on platforms where we don't have / support
    296298# any host support anymore (like Windows XP, for instance).
     
    328330
    329331#
    330 # Included needed dependencies like VBoxRT (VBoxVMM?).
     332# Note: We do not include VBoxRT and stuff here, as this wouldn't work because
     333#       of CRTs on old / ancient guest OSes. See @bugref:10195.
     334#
    331335# Needs careful checking for each and every testcase being run.
    332336# Try to get and include what we have by using wildcards.
     
    334338## @todo Also include R0 and hardening stuff?
    335339#
    336 TMP_UNITTESTS_DEPS_LIB := \
    337         VBoxRT
     340TMP_UNITTESTS_DEPS_LIB :=
    338341
    339342define def_vbox_validationkit_unittests
    340   TMP_UNITTESTS_PATH_BIN = $$(VBOX_PATH_VALIDATIONKIT.$(os).$(arch))/../../../bin
     343  TMP_UNITTESTS_PATH_BIN = $$(VBOX_PATH_VALIDATIONKIT.$(os).$(arch))/../..
    341344  VBOX_VALIDATIONKIT_FILESPEC_UNITTESTS += \
    342345        $(foreach test_whitelist, $(TMP_UNITTESTS_WHITELIST), \
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette