]> git.saurik.com Git - apple/xnu.git/blob - tools/tests/xnu_quick_test/makefile
xnu-1699.22.73.tar.gz
[apple/xnu.git] / tools / tests / xnu_quick_test / makefile
1 SDKROOT ?= /
2 Product=$(shell tconf --product)
3 Embedded=$(shell tconf --test TARGET_OS_EMBEDDED)
4
5 ifeq "$(Embedded)" "YES"
6 XILogFLAG =
7 SDKPATH = $(shell xcodebuild -sdk $(SDKROOT) -version Path)
8 CFLAGS += -isysroot $(SDKPATH)
9 LIBFLAGS += -isysroot $(SDKPATH)
10 else
11 XILogFLAG = -framework XILog
12 endif
13
14 HOSTCC = gcc
15 CC = xcrun -sdk $(SDKROOT) gcc
16
17 ifdef RC_BUILDIT
18 DOING_BUILDIT=yes
19 endif
20
21 ifdef RC_OS
22 DOING_BUILDIT=yes
23 endif
24
25 ifdef DOING_BUILDIT
26 include $(MAKEFILEPATH)/CoreOS/ReleaseControl/Common.make
27 MY_ARCH = $(patsubst %, -arch %, $(RC_ARCHS))
28 install:: xnu_quick_test
29 else
30 ifndef SRCROOT
31 SRCROOT=$(shell /bin/pwd)
32 endif
33 ifndef OBJROOT
34 OBJROOT=$(SRCROOT)/BUILD/obj
35 endif
36 ifndef DSTROOT
37 DSTROOT=$(SRCROOT)/BUILD/dst
38 endif
39
40 ifndef ARCH
41 ARCH=i386 x86_64
42 # this hack should be removed once tconf gets
43 # <rdar://problem/6618734>
44 ifeq "$(Product)" "iPhone"
45 ARCH=armv6
46 endif
47 ifeq "$(Product)" "AppleTV"
48 ARCH=i386
49 endif
50 endif
51
52 ifdef ARCH
53 MY_ARCH = $(patsubst %, -arch %, $(ARCH)) # allows building multiple archs.
54 endif
55
56 CFLAGS += $(MY_ARCH)
57 endif
58
59
60 CFLAGS += -g -I $(SDKPATH)/System/Library/Frameworks/System.framework/Versions/B/PrivateHeaders/ -F/AppleInternal/Library/Frameworks/ $(MORECFLAGS)
61 LIBFLAGS += -I $(SDKPATH)/System/Library/Frameworks/System.framework/Versions/B/PrivateHeaders -F/AppleInternal/Library/Frameworks/ $(XILogFLAG)
62
63 MY_OBJECTS = $(OBJROOT)/main.o $(OBJROOT)/memory_tests.o $(OBJROOT)/misc.o \
64 $(OBJROOT)/sema_tests.o $(OBJROOT)/shared_memory_tests.o \
65 $(OBJROOT)/socket_tests.o $(OBJROOT)/tests.o \
66 $(OBJROOT)/xattr_tests.o $(OBJROOT)/kqueue_tests.o \
67 $(OBJROOT)/machvm_tests.o $(OBJROOT)/commpage_tests.o \
68 $(OBJROOT)/atomic_fifo_queue_test.o $(OBJROOT)/sched_tests.o
69
70 ifneq "$(Product)" "iPhone"
71 MY_OBJECTS += $(OBJROOT)/32bit_inode_tests.o
72 endif
73
74 # In networked home directories, the chown will fail; we notice and print a helpful message
75 CHOWN_COMMAND=sudo chown root $(DSTROOT)/xnu_quick_test
76 PERM_ADVICE="\tYou'll have to set the executable's permissions yourself: chown to root and chmod to 4755. You may need to move to a local volume to do that."
77 xnu_quick_test : $(OBJROOT) $(DSTROOT) $(MY_OBJECTS) helpers
78 sudo rm -rf $(DSTROOT)/xnu_quick_test
79 $(CC) $(MY_ARCH) $(LIBFLAGS) -o $(DSTROOT)/xnu_quick_test $(MY_OBJECTS)
80 @echo $(CHOWN_COMMAND) # Hack so we don't echo help-message echo
81 @$(CHOWN_COMMAND) || echo $(PERM_ADVICE)
82 sudo chmod 4755 $(DSTROOT)/xnu_quick_test
83
84 # This target is defined for testbots.
85 # Before compiling this target, MORECFLAGS must be set to "-D RUN_UNDER_TESTBOTS=1", check README file for more details
86 # NOTE: -f[ailures] MAX_FAILS_ALLOWED option is set to 100 to make sure we completely run the test suite and
87 # report all the failures.
88
89 testbots: xnu_quick_test
90 @(cd $(DSTROOT) ; ./xnu_quick_test -f 100)
91
92 # The helper binaries are used to test exec()'ing between 64bit and 32bit.
93 # Creates test binaries with page zero sizes = 4KB and 4GB. Also creates 32-bit
94 # helper processes for the 64-bit version of xnu_quick_test to test the conversion
95 # from a 32-bit process to a 64-bit process.
96 helpers : helpers/sleep.c helpers/launch.c helpers/arch.c helpers/data_exec.c helperdir $(OBJROOT)/misc.o
97 ifneq "$(Product)" "iPhone"
98 $(CC) -arch i386 helpers/sleep.c -o $(DSTROOT)/helpers/sleep-i386
99 endif
100 ifeq "$(Product)" "MacOSX"
101 $(CC) -arch x86_64 -pagezero_size 0x100000000 helpers/sleep.c -o $(DSTROOT)/helpers/sleep-x86_64-4G
102 $(CC) -arch x86_64 -pagezero_size 0x1000 helpers/sleep.c -o $(DSTROOT)/helpers/sleep-x86_64-4K
103 endif
104 ifneq "$(Product)" "iPhone"
105 $(CC) $(LIBFLAGS) -arch i386 $(OBJROOT)/misc.o helpers/launch.c -o $(DSTROOT)/helpers/launch-i386
106 endif
107 ifeq "$(Product)" "MacOSX"
108 $(CC) $(LIBFLAGS) -arch x86_64 $(OBJROOT)/misc.o helpers/launch.c -o $(DSTROOT)/helpers/launch-x86_64
109 $(CC) $(MY_ARCH) helpers/arch.c -o $(DSTROOT)/helpers/arch
110 $(CC) $(MY_ARCH) helpers/data_exec.c -o $(DSTROOT)/helpers/data_exec
111 $(CC) -arch i386 -DNXDATA32TESTNONX helpers/data_exec.c -o $(DSTROOT)/helpers/data_exec32nonxspawn
112
113 endif
114 ifeq "$(Product)" "iPhone"
115 $(CC) -arch armv6 -isysroot $(SDKROOT) $(CFLAGS) helpers/sleep.c -o $(DSTROOT)/helpers/sleep-arm
116 $(CC) $(LIBFLAGS) -arch armv6 -isysroot $(SDKROOT) $(OBJROOT)/misc.o helpers/launch.c -o $(DSTROOT)/helpers/launch-arm
117 $(CC) $(MY_ARCH) -isysroot $(SDKROOT) helpers/arch.c -o $(DSTROOT)/helpers/arch
118 endif
119
120
121 helperdir :
122 mkdir -p $(DSTROOT)/helpers
123
124 $(OBJROOT) :
125 mkdir -p $(OBJROOT);
126
127 $(DSTROOT) :
128 mkdir -p $(DSTROOT);
129
130 $(OBJROOT)/main.o : main.c tests.h
131 $(CC) $(CFLAGS) -c main.c -o $@
132
133 $(OBJROOT)/memory_tests.o : memory_tests.c tests.h
134 $(CC) $(CFLAGS) -c memory_tests.c -o $@
135
136 # misc.o has to be built 3-way for the helpers to link
137 $(OBJROOT)/misc.o : misc.c tests.h
138 ifeq "$(Product)" "iPhone"
139 $(CC) -arch armv6 $(CFLAGS) -c misc.c -o $@
140 else
141 $(CC) -arch i386 -arch x86_64 $(CFLAGS) -c misc.c -o $@
142 endif
143
144 $(OBJROOT)/sema_tests.o : sema_tests.c tests.h
145 $(CC) $(CFLAGS) -c sema_tests.c -o $@
146
147 $(OBJROOT)/shared_memory_tests.o : shared_memory_tests.c tests.h
148 $(CC) $(CFLAGS) -c shared_memory_tests.c -o $@
149
150 $(OBJROOT)/socket_tests.o : socket_tests.c tests.h
151 $(CC) $(CFLAGS) -c socket_tests.c -o $@
152
153 $(OBJROOT)/tests.o : tests.c tests.h
154 $(CC) $(CFLAGS) -c tests.c -o $@
155
156 $(OBJROOT)/xattr_tests.o : xattr_tests.c tests.h
157 $(CC) $(CFLAGS) -c xattr_tests.c -o $@
158
159 $(OBJROOT)/machvm_tests.o : machvm_tests.c tests.h
160 $(CC) $(CFLAGS) -c machvm_tests.c -o $@
161
162 $(OBJROOT)/sched_tests.o : sched_tests.c tests.h
163 $(CC) $(CFLAGS) -c sched_tests.c -o $@
164
165 $(OBJROOT)/kqueue_tests.o : kqueue_tests.c tests.h
166 $(CC) $(CFLAGS) -c kqueue_tests.c -o $@
167
168 $(OBJROOT)/32bit_inode_tests.o : 32bit_inode_tests.c tests.h
169 $(CC) $(CFLAGS) -c 32bit_inode_tests.c -o $@
170
171 $(OBJROOT)/commpage_tests.o : commpage_tests.c tests.h
172 $(CC) $(CFLAGS) -c commpage_tests.c -o $@
173
174 $(OBJROOT)/atomic_fifo_queue_test.o : atomic_fifo_queue_test.c tests.h
175 $(CC) $(CFLAGS) -c atomic_fifo_queue_test.c -o $@
176
177
178 ifndef DOING_BUILDIT
179 .PHONY : clean
180 clean :
181 sudo rm -Rf $(DSTROOT)/xnu_quick_test
182 sudo rm -Rf $(DSTROOT)/helpers/*
183 rm -Rf $(OBJROOT)/*.o
184 endif