VirtualBox

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

Last change on this file since 11500 was 10043, checked in by vboxsync, 16 years ago

Fixed a couple of wrong deps (TARGET_PATH instead of PATH_TARGET, missing double expansion of TARGET_vbetables-gen in rule dependency). Rewrote the bcc temp file workaround to not use .NOTPARALLEL as that is wasting time in a parallel build.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.3 KB
Line 
1# $Id: Makefile.kmk 10043 2008-06-30 23:54:38Z vboxsync $
2## @file
3# Sub-Makefile for the Devices testcases.
4#
5
6#
7# Copyright (C) 2006-2007 Sun Microsystems, Inc.
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# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18# Clara, CA 95054 USA or visit http://www.sun.com if you need
19# additional information or have any questions.
20#
21
22ifdef VBOX_KBUILD_HACKING
23SUB_DEPTH = ../../../..
24else
25SUB_DEPTH = ..
26DEPTH ?= ../../../..
27endif
28include $(KBUILD_PATH)/subheader.kmk
29
30#
31# We setup one 'other' target for executing the structure & alignment
32# validation testcases. Perhaps a bit hackish, but extremely useful.
33#
34ifeq ($(KBUILD_TARGET),$(KBUILD_HOST))
35 ifeq ($(filter-out x86.x86 amd64.amd64 x86.amd64, $(KBUILD_TARGET_ARCH).$(KBUILD_HOST_ARCH)),)
36 OTHERS += \
37 $(PATH_TARGET)/tstDeviceStructSize.run
38 endif
39endif
40
41# The normal testing pass.
42TESTING += \
43 $(PATH_TARGET)/tstDeviceStructSize.run
44
45
46#
47# Globals
48#
49VBOX_PATH_DEVICES_SRC ?= $(PATH_ROOT)/src/VBox/Devices
50
51#
52# The testcase generator.
53#
54PROGRAMS += tstDeviceStructSizeGC
55tstDeviceStructSizeGC_TEMPLATE = VBOXGCEXE
56tstDeviceStructSizeGC_DEFS =
57ifdef VBOX_WITH_USB
58tstDeviceStructSizeGC_DEFS += VBOX_WITH_USB IN_USB_GC
59endif
60ifdef VBOX_WITH_AHCI
61tstDeviceStructSizeGC_DEFS += VBOX_WITH_AHCI
62endif
63ifdef VBOX_WITH_E1000
64tstDeviceStructSizeGC_DEFS += VBOX_WITH_E1000
65endif
66tstDeviceStructSizeGC_SOURCES = tstDeviceStructSizeGC.cpp
67tstDeviceStructSizeGC_INCS = \
68 $(VBOX_PATH_DEVICES_SRC) \
69 $(VBOX_PATH_DEVICES_SRC)/Bus \
70 $(PATH_TARGET)
71
72#
73# The testcase it self.
74#
75PROGRAMS += tstDeviceStructSize
76tstDeviceStructSize_TEMPLATE = VBOXR3EXE
77tstDeviceStructSize_DEFS =
78ifdef VBOX_WITH_USB
79tstDeviceStructSize_DEFS += VBOX_WITH_USB IN_USB_GC
80endif
81ifdef VBOX_WITH_AHCI
82tstDeviceStructSize_DEFS += VBOX_WITH_AHCI
83endif
84ifdef VBOX_WITH_E1000
85tstDeviceStructSize_DEFS += VBOX_WITH_E1000
86endif
87tstDeviceStructSize_INCS = \
88 $(VBOX_PATH_DEVICES_SRC) \
89 $(VBOX_PATH_DEVICES_SRC)/Bus \
90 $(PATH_TARGET)
91tstDeviceStructSize_SOURCES = tstDeviceStructSize.cpp
92tstDeviceStructSize_LIBS.l4 = $(LIB_RUNTIME)
93tstDeviceStructSize_CLEAN = \
94 $(PATH_TARGET)/tstDeviceStructSizeGC.h \
95 $(PATH_TARGET)/tstDeviceStructSizeGC.run
96tstDeviceStructSize.cpp_DEPS = $(PATH_TARGET)/tstDeviceStructSizeGC.h
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
106# 1&2. Manually dump selected structures and members.
107$(PATH_TARGET)/tstDeviceStructSizeGC.h: $$(INSTARGET_tstDeviceStructSizeGC)
108 $(call MSG_GENERATE,,$@)
109 $(QUIET)$(REDIRECT) -wo $@ -- $(INSTARGET_tstDeviceStructSizeGC)
110
111# 3. run it.
112$(PATH_TARGET)/tstDeviceStructSize.run: $$(INSTARGET_tstDeviceStructSize)
113 $(QUIET)$(RM) -f $@
114 $^
115 $(QUIET)$(APPEND) "$@" "done"
116
117# alias for the struct test.
118run-struct-tests: $(PATH_TARGET)/tstDeviceStructSize.run
119
120
121include $(KBUILD_PATH)/subfooter.kmk
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