~ubuntu-branches/ubuntu/raring/virtualbox-ose/raring

« back to all changes in this revision

Viewing changes to src/VBox/VMM/testcase/Makefile.kmk

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2009-12-18 16:44:29 UTC
  • mfrom: (0.3.3 upstream) (0.4.6 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091218164429-jd34ccexpv5na11a
Tags: 3.1.2-dfsg-1ubuntu1
* Merge from Debian unstable (LP: #498219), remaining changes:
  - Disable update action
    - debian/patches/u01-disable-update-action.dpatch
  - VirtualBox should go in Accessories, not in System tools (LP: #288590)
    - debian/virtualbox-ose-qt.files/virtualbox-ose.desktop
  - Add Apport hook
    - debian/virtualbox-ose.files/source_virtualbox-ose.py
    - debian/virtualbox-ose.install
  - Add Launchpad integration
    - debian/control
    - debian/lpi-bug.xpm
    - debian/patches/u02-lp-integration.dpatch
* Fixes the following bugs:
  - Kernel module fails to build with Linux >= 2.6.32 (LP: #474625)
  - X.Org drivers need to be rebuilt against X-Server 1.7 (LP: #495935)
  - The *-source packages try to build the kernel modules even though the
    kernel headers aren't available (LP: #473334)
* Replace *-source packages with transitional packages for *-dkms.
* Adapt u01-disable-update-action.dpatch and u02-lp-integration.dpatch for
  new upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
PROGRAMS   += tstVMMFork
31
31
endif
32
32
ifdef VBOX_WITH_TESTCASES
33
 
 PROGRAMS  += tstCFGM tstSSM tstMMHyperHeap tstVMREQ tstMicro tstCompiler tstVMMR0CallHost-1 tstVMMR0CallHost-2
 
33
 PROGRAMS  += \
 
34
        tstCFGM \
 
35
        tstCompressionBenchmark \
 
36
        tstSSM \
 
37
        tstMMHyperHeap \
 
38
        tstVMREQ \
 
39
        tstMicro \
 
40
        tstCompiler \
 
41
        tstVMMR0CallHost-1 \
 
42
        tstVMMR0CallHost-2
34
43
 ifneq ($(KBUILD_TARGET),l4)
35
44
  PROGRAMS += tstAnimate
36
45
 endif
39
48
 
40
49
ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
41
50
 PROGRAMS  += tstPDMAsyncCompletion
 
51
 PROGRAMS  += tstPDMAsyncCompletionStress
42
52
endif
43
53
 
44
54
# Where we put our temporary files (just for simplicity)
87
97
#
88
98
tstVMStructGC_TEMPLATE  = VBOXGCEXE
89
99
tstVMStructGC_DEFS      = IN_VMM_RC IN_DIS IN_RT_RC IN_RT_GC
 
100
ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),darwin.x86)
 
101
tstVMStructGC_DEFS     += \
 
102
        VBOX_WITH_2X_4GB_ADDR_SPACE   VBOX_WITH_2X_4GB_ADDR_SPACE_IN_RC \
 
103
        VBOX_WITH_HYBRID_32BIT_KERNEL VBOX_WITH_HYBRID_32BIT_KERNEL_IN_RC
 
104
endif
90
105
ifdef VBOX_WITH_R0_LOGGING
91
106
tstVMStructGC_DEFS     += VBOX_WITH_R0_LOGGING
92
107
endif
95
110
 
96
111
tstVMStructSize_TEMPLATE= VBOXR3AUTOTST
97
112
tstVMStructSize_DEFS    = IN_VMM_R3 IN_DIS
 
113
ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),darwin.x86)
 
114
tstVMStructSize_DEFS   += \
 
115
        VBOX_WITH_2X_4GB_ADDR_SPACE   VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R3 \
 
116
        VBOX_WITH_HYBRID_32BIT_KERNEL VBOX_WITH_HYBRID_32BIT_KERNEL_IN_R3
 
117
endif
98
118
tstVMStructSize_INCS    = $(VBOX_PATH_VMM_SRC) $(VBOX_PATH_VMM_SRC)/PATM $(VBOX_VMM_TESTCASE_OUT_DIR)
99
119
tstVMStructSize_SOURCES = tstVMStructSize.cpp
100
120
tstVMStructSize.cpp_DEPS= $(VBOX_VMM_TESTCASE_OUT_DIR)/tstVMStructGC.h
145
165
tstCFGM_SOURCES         = tstCFGM.cpp
146
166
tstCFGM_LIBS            = $(LIB_VMM) $(LIB_REM) $(LIB_RUNTIME)
147
167
 
 
168
tstCompressionBenchmark_TEMPLATE = VBOXR3TSTEXE
 
169
tstCompressionBenchmark_SOURCES  = tstCompressionBenchmark.cpp
 
170
 
148
171
tstVMM_TEMPLATE         = VBOXR3EXE
149
172
tstVMM_SOURCES          = tstVMM.cpp
150
173
tstVMM_LIBS             = $(LIB_VMM) $(LIB_REM) $(LIB_RUNTIME)
209
232
tstPDMAsyncCompletion_TEMPLATE         = VBOXR3EXE
210
233
tstPDMAsyncCompletion_SOURCES          = tstPDMAsyncCompletion.cpp
211
234
tstPDMAsyncCompletion_LIBS             = $(LIB_VMM) $(LIB_REM) $(LIB_RUNTIME)
 
235
 
 
236
tstPDMAsyncCompletionStress_TEMPLATE         = VBOXR3EXE
 
237
tstPDMAsyncCompletionStress_SOURCES          = tstPDMAsyncCompletionStress.cpp
 
238
tstPDMAsyncCompletionStress_LIBS             = $(LIB_VMM) $(LIB_REM) $(LIB_RUNTIME)
212
239
endif
213
240
 
214
241
include $(KBUILD_PATH)/subfooter.kmk