]> git.proxmox.com Git - qemu.git/blame - tests/Makefile
report serial devices created with -device in the PIIX4 config space
[qemu.git] / tests / Makefile
CommitLineData
8d5f07fa 1-include ../config-host.mak
9517a9e6 2-include $(SRC_PATH)/rules.mak
076d2471
PB
3
4$(call set-vpath, $(SRC_PATH)/tests)
7d13299d 5
2b2e59e6
PB
6QEMU=../i386-linux-user/qemu-i386
7QEMU_X86_64=../x86_64-linux-user/qemu-x86_64
8CC_X86_64=$(CC_I386) -m64
9
f9728943
PB
10QEMU_INCLUDES += -I..
11CFLAGS=-Wall -O2 -g -fno-strict-aliasing
3b42c979 12#CFLAGS+=-msse2
4d1135e4
FB
13LDFLAGS=
14
2b2e59e6
PB
15# TODO: automatically detect ARM and MIPS compilers, and run those too
16
17# runcom maps page 0, so it requires root privileges
18# also, pi_10.com runs indefinitely
19
20I386_TESTS=hello-i386 \
21 linux-test \
22 testthread \
23 sha1-i386 \
24 test-i386 \
25 test-mmap \
26 # runcom
27
28# native i386 compilers sometimes are not biarch. assume cross-compilers are
29ifneq ($(ARCH),i386)
30I386_TESTS+=run-test-x86_64
7d13299d 31endif
2b2e59e6
PB
32
33TESTS = test_path
34ifneq ($(call find-in-path, $(CC_I386)),)
35TESTS += $(I386_TESTS)
776f2227 36endif
367e86e8 37
2b2e59e6
PB
38all: $(patsubst %,run-%,$(TESTS))
39
40# rules to run tests
41
42.PHONY: $(patsubst %,run-%,$(TESTS))
43
44run-%: %
45 -$(QEMU) ./$*
46
47run-hello-i386: hello-i386
48run-linux-test: linux-test
49run-testthread: testthread
50run-sha1-i386: sha1-i386
51
52run-test-i386: test-i386
53 ./test-i386 > test-i386.ref
54 -$(QEMU) test-i386 > test-i386.out
55 @if diff -u test-i386.ref test-i386.out ; then echo "Auto Test OK"; fi
56
57run-test-x86_64: test-x86_64
58 ./test-x86_64 > test-x86_64.ref
59 -$(QEMU_X86_64) test-x86_64 > test-x86_64.out
60 @if diff -u test-x86_64.ref test-x86_64.out ; then echo "Auto Test OK"; fi
61
62run-test-mmap: test-mmap
63 -$(QEMU) ./test-mmap
64 -$(QEMU) -p 8192 ./test-mmap 8192
65 -$(QEMU) -p 16384 ./test-mmap 16384
66 -$(QEMU) -p 32768 ./test-mmap 32768
67
68run-runcom: runcom
69 -$(QEMU) ./runcom $(SRC_PATH)/tests/pi_10.com
70
71run-test_path: test_path
72 ./test_path
73
74# rules to compile tests
4d1135e4 75
2b2e59e6
PB
76test_path: test_path.o
77test_path.o: test_path.c
4d1135e4 78
144c345d 79hello-i386: hello-i386.c
2b2e59e6 80 $(CC_I386) -nostdlib $(CFLAGS) -static $(LDFLAGS) -o $@ $<
144c345d 81 strip $@
4d1135e4 82
1b6b029e 83testthread: testthread.c
2b2e59e6 84 $(CC_I386) $(CFLAGS) $(LDFLAGS) -o $@ $< -lpthread
7fb9a24e 85
776f2227 86# i386/x86_64 emulation test (test various opcodes) */
5132455e 87test-i386: test-i386.c test-i386-code16.S test-i386-vm86.S \
e5918247 88 test-i386.h test-i386-shift.h test-i386-muldiv.h
2b2e59e6 89 $(CC_I386) $(CFLAGS) $(LDFLAGS) -o $@ \
e5fd43a9 90 $(<D)/test-i386.c $(<D)/test-i386-code16.S $(<D)/test-i386-vm86.S -lm
776f2227
FB
91
92test-x86_64: test-i386.c \
93 test-i386.h test-i386-shift.h test-i386-muldiv.h
2b2e59e6 94 $(CC_X86_64) $(CFLAGS) $(LDFLAGS) -o $@ $(<D)/test-i386.c -lm
e1ffb0f1 95
9d16dd55
FB
96# generic Linux and CPU test
97linux-test: linux-test.c
2b2e59e6
PB
98 $(CC_I386) $(CFLAGS) $(LDFLAGS) -o $@ $< -lm
99
100# vm86 test
101runcom: runcom.c
102 $(CC_I386) $(CFLAGS) $(LDFLAGS) -o $@ $<
103
104test-mmap: test-mmap.c
105 $(CC_I386) -m32 $(CFLAGS) -Wall -O2 $(LDFLAGS) -o $@ $<
9d16dd55 106
4d1135e4 107# speed test
04369ff2 108sha1-i386: sha1.c
2b2e59e6 109 $(CC_I386) $(CFLAGS) $(LDFLAGS) -o $@ $<
4d1135e4 110
04369ff2 111sha1: sha1.c
2b2e59e6 112 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
04369ff2
FB
113
114speed: sha1 sha1-i386
4d1135e4 115 time ./sha1
3ef693a0 116 time $(QEMU) ./sha1-i386
4d1135e4 117
2b2e59e6 118# broken test
039d3da3 119# NOTE: -fomit-frame-pointer is currently needed : this is a bug in libqemu
5f650495 120qruncom: qruncom.c ../ioport-user.c ../i386-user/libqemu.a
2d7a3b9d 121 $(CC) $(CFLAGS) -fomit-frame-pointer $(LDFLAGS) -I../target-i386 -I.. -I../i386-user -I../fpu \
5f650495 122 -o $@ $(filter %.c, $^) -L../i386-user -lqemu -lm
039d3da3 123
394411ac
FB
124# arm test
125hello-arm: hello-arm.o
126 arm-linux-ld -o $@ $<
127
128hello-arm.o: hello-arm.c
129 arm-linux-gcc -Wall -g -O2 -c -o $@ $<
130
18c9b560
AZ
131test-arm-iwmmxt: test-arm-iwmmxt.s
132 cpp < $< | arm-linux-gnu-gcc -Wall -static -march=iwmmxt -mabi=aapcs -x assembler - -o $@
133
e4630047
TS
134# MIPS test
135hello-mips: hello-mips.c
136 mips-linux-gnu-gcc -nostdlib -static -mno-abicalls -fno-PIC -mabi=32 -Wall -Wextra -g -O2 -o $@ $<
137
138hello-mipsel: hello-mips.c
139 mipsel-linux-gnu-gcc -nostdlib -static -mno-abicalls -fno-PIC -mabi=32 -Wall -Wextra -g -O2 -o $@ $<
140
e7daa605
TS
141# testsuite for the CRIS port.
142test-cris:
143 $(MAKE) -C cris check
144
d65f0831
MW
145# testsuite for the LM32 port.
146test-lm32:
147 $(MAKE) -C lm32 check
148
7d13299d 149clean:
11650e36
FB
150 rm -f *~ *.o test-i386.out test-i386.ref \
151 test-x86_64.log test-x86_64.ref qruncom $(TESTS)