VirtualBox

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

Last change on this file since 53426 was 52259, checked in by vboxsync, 10 years ago

Updated devices testcase to cover more.

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