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