VirtualBox

source: vbox/trunk/src/VBox/Devices/testcase/Makefile.kmk@ 77807

Last change on this file since 77807 was 76553, checked in by vboxsync, 6 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.3 KB
Line 
1# $Id: Makefile.kmk 76553 2019-01-01 01:45:53Z vboxsync $
2## @file
3# Sub-Makefile for the device testcases.
4#
5
6#
7# Copyright (C) 2006-2019 Oracle Corporation
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17
18SUB_DEPTH = ../../../..
19include $(KBUILD_PATH)/subheader.kmk
20
21#
22# Globals
23#
24VBOX_PATH_DEVICES_SRC ?= $(PATH_ROOT)/src/VBox/Devices
25VBOX_PATH_VMM_DEVICES_SRC ?= $(PATH_ROOT)/src/VBox/VMM/include
26VBOX_DEVICES_TEST_OUT_DIR := $(PATH_TARGET)/Devices/testcase
27BLDDIRS += $(VBOX_DEVICES_TEST_OUT_DIR)
28
29VBOX_DEVICES_TESTS_FEATURES = \
30 $(if $(VBOX_WITH_AHCI),VBOX_WITH_AHCI,) \
31 $(if $(VBOX_WITH_BUSLOGIC),VBOX_WITH_BUSLOGIC,) \
32 $(if $(VBOX_WITH_CRHGSMI),VBOX_WITH_CRHGSMI,) \
33 $(if $(VBOX_WITH_E1000),VBOX_WITH_E1000,) \
34 $(if $(VBOX_WITH_EHCI_IMPL),VBOX_WITH_EHCI_IMPL,) \
35 $(if $(VBOX_WITH_HGSMI),VBOX_WITH_HGSMI,) \
36 $(if $(VBOX_WITH_HP_HDA),VBOX_WITH_HP_HDA,) \
37 $(if $(VBOX_WITH_INTEL_HDA),VBOX_WITH_INTEL_HDA,) \
38 $(if $(VBOX_WITH_NVIDIA_HDA),VBOX_WITH_NVIDIA_HDA,) \
39 $(if $(VBOX_WITH_LSILOGIC),VBOX_WITH_LSILOGIC,) \
40 $(if $(VBOX_WITH_NVME_IMPL),VBOX_WITH_NVME_IMPL,) \
41 $(if $(VBOX_WITH_PCI_PASSTHROUGH_IMPL),VBOX_WITH_PCI_PASSTHROUGH_IMPL,) \
42 $(if $(VBOX_WITH_RAW_MODE),VBOX_WITH_RAW_MODE,) \
43 $(if $(VBOX_WITH_SCSI),VBOX_WITH_SCSI,) \
44 $(if $(VBOX_WITH_USB),VBOX_WITH_USB,) \
45 $(if $(VBOX_WITH_VDMA),VBOX_WITH_VDMA,) \
46 $(if $(VBOX_WITH_VIDEOHWACCEL),VBOX_WITH_VIDEOHWACCEL,) \
47 $(if $(VBOX_WITH_VIRTIO),VBOX_WITH_VIRTIO,) \
48 $(if $(VBOX_WITH_VMSVGA),VBOX_WITH_VMSVGA,) \
49 $(if $(VBOX_WITH_WDDM),VBOX_WITH_WDDM,) \
50 $(if $(VBOX_WITH_XHCI_IMPL),VBOX_WITH_XHCI_IMPL,) \
51 $(VBOX_AUDIO_DEFS)
52
53#
54# We setup one 'other' target for executing the structure & alignment
55# validation testcases. Perhaps a bit hackish, but extremely useful.
56#
57ifeq ($(KBUILD_TARGET),$(KBUILD_HOST))
58 ifeq ($(filter-out x86.x86 amd64.amd64 x86.amd64, $(KBUILD_TARGET_ARCH).$(KBUILD_HOST_ARCH)),)
59 OTHERS += \
60 $(VBOX_DEVICES_TEST_OUT_DIR)/tstDeviceStructSize.run
61 endif
62endif
63
64# The normal testing pass.
65TESTING += \
66 $(VBOX_DEVICES_TEST_OUT_DIR)/tstDeviceStructSize.run
67
68ifdef VBOX_WITH_RAW_MODE
69 #
70 # The testcase generator.
71 #
72 PROGRAMS += tstDeviceStructSizeRC
73 tstDeviceStructSizeRC_TEMPLATE = VBoxRcExe
74 tstDeviceStructSizeRC_DEFS = $(VBOX_DEVICES_TESTS_FEATURES)
75 tstDeviceStructSizeRC_SOURCES = tstDeviceStructSizeRC.cpp
76 tstDeviceStructSizeRC_INCS = \
77 $(VBOX_PATH_DEVICES_SRC)/build \
78 $(VBOX_PATH_DEVICES_SRC)/Bus \
79 $(VBOX_DEVICES_TEST_OUT_DIR) \
80 $(VBOX_GRAPHICS_INCS)
81 tstDeviceStructSizeRC_INCS += $(VBOX_PATH_VMM_DEVICES_SRC)
82endif # VBOX_WITH_RAW_MODE
83
84#
85# The testcase it self.
86#
87PROGRAMS += tstDeviceStructSize
88tstDeviceStructSize_TEMPLATE = VBOXR3AUTOTST
89tstDeviceStructSize_DEFS = $(VBOX_DEVICES_TESTS_FEATURES)
90tstDeviceStructSize_INCS = \
91 $(VBOX_PATH_DEVICES_SRC)/build \
92 $(VBOX_PATH_DEVICES_SRC)/Bus \
93 $(VBOX_DEVICES_TEST_OUT_DIR) \
94 $(VBOX_GRAPHICS_INCS)
95tstDeviceStructSize_SOURCES = tstDeviceStructSize.cpp
96tstDeviceStructSize_CLEAN = \
97 $(VBOX_DEVICES_TEST_OUT_DIR)/tstDeviceStructSizeRC.h \
98 $(VBOX_DEVICES_TEST_OUT_DIR)/tstDeviceStructSize.run
99ifdef VBOX_WITH_RAW_MODE
100 tstDeviceStructSize.cpp_DEPS = $(VBOX_DEVICES_TEST_OUT_DIR)/tstDeviceStructSizeRC.h
101endif
102 tstDeviceStructSize_INCS += $(VBOX_PATH_VMM_DEVICES_SRC)
103
104#
105# Run rule for tstDeviceStructSize.
106#
107
108# 1. Dump selected structure in the VMMRC.rc debug info.
109# 2. Generate a testcase from the dump
110## future
111
112ifdef VBOX_WITH_RAW_MODE
113# 1&2. Manually dump selected structures and members.
114$(VBOX_DEVICES_TEST_OUT_DIR)/tstDeviceStructSizeRC.h: $$(tstDeviceStructSizeRC_1_STAGE_TARGET) | $$(dir $$@)
115 $(call MSG_GENERATE,,$@)
116 $(QUIET)$(REDIRECT) -wo $@ -- $^
117endif
118
119# 3. run it.
120$(VBOX_DEVICES_TEST_OUT_DIR)/tstDeviceStructSize.run: $$(tstDeviceStructSize_1_STAGE_TARGET) | $$(dir $$@)
121 $(QUIET)$(RM) -f $@
122 $^
123 $(QUIET)$(APPEND) "$@" "done"
124
125# alias for the struct test.
126run-struct-tests: $(VBOX_DEVICES_TEST_OUT_DIR)/tstDeviceStructSize.run
127
128
129include $(FILE_KBUILD_SUB_FOOTER)
130
Note: See TracBrowser for help on using the repository browser.

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