VirtualBox

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

Last change on this file since 53637 was 53442, checked in by vboxsync, 10 years ago

PDM Audio: Branch -> trunk.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.0 KB
Line 
1# $Id: Makefile.kmk 53442 2014-12-04 13:49:43Z vboxsync $
2## @file
3# Sub-Makefile for the device testcases.
4#
5
6#
7# Copyright (C) 2006-2014 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_DEVICES_TEST_OUT_DIR := $(PATH_TARGET)/Devices/testcase
26BLDDIRS += $(VBOX_DEVICES_TEST_OUT_DIR)
27
28## @todo Sort the features alphabetically!
29VBOX_DEVICES_TESTS_FEATURES = \
30 $(if $(VBOX_WITH_RAW_MODE),VBOX_WITH_RAW_MODE,) \
31 $(if $(VBOX_WITH_USB),VBOX_WITH_USB,) \
32 $(if $(VBOX_WITH_EHCI_IMPL),VBOX_WITH_EHCI_IMPL,) \
33 $(if $(VBOX_WITH_XHCI_IMPL),VBOX_WITH_XHCI_IMPL,) \
34 $(if $(VBOX_WITH_AHCI),VBOX_WITH_AHCI,) \
35 $(if $(VBOX_WITH_E1000),VBOX_WITH_E1000,) \
36 $(if $(VBOX_WITH_VIRTIO),VBOX_WITH_VIRTIO,) \
37 $(if $(VBOX_WITH_SCSI),VBOX_WITH_SCSI,) \
38 $(if $(VBOX_WITH_BUSLOGIC),VBOX_WITH_BUSLOGIC,) \
39 $(if $(VBOX_WITH_LSILOGIC),VBOX_WITH_LSILOGIC,) \
40 $(if $(VBOX_WITH_NEW_PS2M),VBOX_WITH_NEW_PS2M,) \
41 $(if $(VBOX_WITH_HGSMI),VBOX_WITH_HGSMI,) \
42 $(if $(VBOX_WITH_CRHGSMI),VBOX_WITH_CRHGSMI,) \
43 $(if $(VBOX_WITH_VDMA),VBOX_WITH_VDMA,) \
44 $(if $(VBOX_WITH_WDDM),VBOX_WITH_WDDM,) \
45 $(if $(VBOX_WITH_VIDEOHWACCEL),VBOX_WITH_VIDEOHWACCEL,) \
46 $(if $(VBOX_WITH_PCI_PASSTHROUGH_IMPL),VBOX_WITH_PCI_PASSTHROUGH_IMPL,) \
47 $(if $(VBOX_WITH_VMSVGA),VBOX_WITH_VMSVGA,) \
48 $(if $(VBOX_WITH_PDM_AUDIO_DRIVER),VBOX_WITH_PDM_AUDIO_DRIVER,)
49
50
51#
52# We setup one 'other' target for executing the structure & alignment
53# validation testcases. Perhaps a bit hackish, but extremely useful.
54#
55ifeq ($(KBUILD_TARGET),$(KBUILD_HOST))
56 ifeq ($(filter-out x86.x86 amd64.amd64 x86.amd64, $(KBUILD_TARGET_ARCH).$(KBUILD_HOST_ARCH)),)
57 OTHERS += \
58 $(VBOX_DEVICES_TEST_OUT_DIR)/tstDeviceStructSize.run
59 endif
60endif
61
62# The normal testing pass.
63TESTING += \
64 $(VBOX_DEVICES_TEST_OUT_DIR)/tstDeviceStructSize.run
65
66ifdef VBOX_WITH_RAW_MODE
67 #
68 # The testcase generator.
69 #
70 PROGRAMS += tstDeviceStructSizeRC
71 tstDeviceStructSizeRC_TEMPLATE = VBoxRcExe
72 tstDeviceStructSizeRC_DEFS = $(VBOX_DEVICES_TESTS_FEATURES)
73 tstDeviceStructSizeRC_SOURCES = tstDeviceStructSizeRC.cpp
74 tstDeviceStructSizeRC_INCS = \
75 $(VBOX_PATH_DEVICES_SRC)/build \
76 $(VBOX_PATH_DEVICES_SRC)/Bus \
77 $(VBOX_DEVICES_TEST_OUT_DIR)
78endif # VBOX_WITH_RAW_MODE
79
80#
81# The testcase it self.
82#
83PROGRAMS += tstDeviceStructSize
84tstDeviceStructSize_TEMPLATE = VBOXR3AUTOTST
85tstDeviceStructSize_DEFS = $(VBOX_DEVICES_TESTS_FEATURES)
86tstDeviceStructSize_INCS = \
87 $(VBOX_PATH_DEVICES_SRC)/build \
88 $(VBOX_PATH_DEVICES_SRC)/Bus \
89 $(VBOX_DEVICES_TEST_OUT_DIR)
90tstDeviceStructSize_SOURCES = tstDeviceStructSize.cpp
91tstDeviceStructSize_CLEAN = \
92 $(VBOX_DEVICES_TEST_OUT_DIR)/tstDeviceStructSizeRC.h \
93 $(VBOX_DEVICES_TEST_OUT_DIR)/tstDeviceStructSize.run
94ifdef VBOX_WITH_RAW_MODE
95 tstDeviceStructSize.cpp_DEPS = $(VBOX_DEVICES_TEST_OUT_DIR)/tstDeviceStructSizeRC.h
96endif
97
98#
99# Run rule for tstDeviceStructSize.
100#
101
102# 1. Dump selected structure in the VMMGC.gc debug info.
103# 2. Generate a testcase from the dump
104## future
105
106ifdef VBOX_WITH_RAW_MODE
107# 1&2. Manually dump selected structures and members.
108$(VBOX_DEVICES_TEST_OUT_DIR)/tstDeviceStructSizeRC.h: $$(tstDeviceStructSizeRC_1_STAGE_TARGET) | $$(dir $$@)
109 $(call MSG_GENERATE,,$@)
110 $(QUIET)$(REDIRECT) -wo $@ -- $^
111endif
112
113# 3. run it.
114$(VBOX_DEVICES_TEST_OUT_DIR)/tstDeviceStructSize.run: $$(tstDeviceStructSize_1_STAGE_TARGET) | $$(dir $$@)
115 $(QUIET)$(RM) -f $@
116 $^
117 $(QUIET)$(APPEND) "$@" "done"
118
119# alias for the struct test.
120run-struct-tests: $(VBOX_DEVICES_TEST_OUT_DIR)/tstDeviceStructSize.run
121
122
123include $(FILE_KBUILD_SUB_FOOTER)
124
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