Statistics
| Branch: | Revision:

root / tests / Makefile @ 076d2471

History | View | Annotate | Download (2.8 kB)

1 8d5f07fa bellard
-include ../config-host.mak
2 076d2471 Paolo Bonzini
3 076d2471 Paolo Bonzini
$(call set-vpath, $(SRC_PATH)/tests)
4 7d13299d bellard
5 7aaabde7 bellard
CFLAGS=-Wall -O2 -g -fno-strict-aliasing
6 3b42c979 bellard
#CFLAGS+=-msse2
7 4d1135e4 bellard
LDFLAGS=
8 4d1135e4 bellard
9 7d13299d bellard
ifeq ($(ARCH),i386)
10 6f7044fa bellard
TESTS=linux-test testthread sha1-i386 test-i386
11 7d13299d bellard
endif
12 776f2227 bellard
ifeq ($(ARCH),x86_64)
13 776f2227 bellard
TESTS=test-x86_64
14 776f2227 bellard
endif
15 9d16dd55 bellard
TESTS+=sha1# test_path
16 9d16dd55 bellard
#TESTS+=test_path
17 6f7044fa bellard
#TESTS+=runcom
18 367e86e8 bellard
19 2afbeee7 bellard
QEMU=../i386-linux-user/qemu-i386
20 4d1135e4 bellard
21 4d1135e4 bellard
all: $(TESTS)
22 4d1135e4 bellard
23 144c345d bellard
hello-i386: hello-i386.c
24 4d1135e4 bellard
	$(CC) -nostdlib $(CFLAGS) -static $(LDFLAGS) -o $@ $<
25 144c345d bellard
	strip $@
26 4d1135e4 bellard
27 1b6b029e bellard
testthread: testthread.c
28 1b6b029e bellard
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< -lpthread
29 1b6b029e bellard
30 7fb9a24e bellard
test_path: test_path.c
31 7fb9a24e bellard
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
32 7fb9a24e bellard
	./$@ || { rm $@; exit 1; }
33 7fb9a24e bellard
34 776f2227 bellard
# i386/x86_64 emulation test (test various opcodes) */
35 5132455e bellard
test-i386: test-i386.c test-i386-code16.S test-i386-vm86.S \
36 e5918247 bellard
           test-i386.h test-i386-shift.h test-i386-muldiv.h
37 a44c7c15 bellard
	$(CC) -m32 $(CFLAGS) $(LDFLAGS) -static -o $@ \
38 e5fd43a9 malc
              $(<D)/test-i386.c $(<D)/test-i386-code16.S $(<D)/test-i386-vm86.S -lm
39 776f2227 bellard
40 776f2227 bellard
test-x86_64: test-i386.c \
41 776f2227 bellard
           test-i386.h test-i386-shift.h test-i386-muldiv.h
42 e5fd43a9 malc
	$(CC) -m64 $(CFLAGS) $(LDFLAGS) -static -o $@ $(<D)/test-i386.c -lm
43 4d1135e4 bellard
44 04369ff2 bellard
ifeq ($(ARCH),i386)
45 d3032929 bellard
test: test-i386
46 4d1135e4 bellard
	./test-i386 > test-i386.ref
47 d3032929 bellard
else
48 d3032929 bellard
test:
49 04369ff2 bellard
endif
50 3ef693a0 bellard
	$(QEMU) test-i386 > test-i386.out
51 4d1135e4 bellard
	@if diff -u test-i386.ref test-i386.out ; then echo "Auto Test OK"; fi
52 4d1135e4 bellard
53 e1ffb0f1 edgar_igl
.PHONY: test-mmap
54 e1ffb0f1 edgar_igl
test-mmap: test-mmap.c
55 e1ffb0f1 edgar_igl
	$(CC) $(CFLAGS) -Wall -static -O2 $(LDFLAGS) -o $@ $<
56 e1ffb0f1 edgar_igl
	-./test-mmap
57 e1ffb0f1 edgar_igl
	-$(QEMU) ./test-mmap
58 e1ffb0f1 edgar_igl
	-$(QEMU) -p 8192 ./test-mmap 8192
59 e1ffb0f1 edgar_igl
	-$(QEMU) -p 16384 ./test-mmap 16384
60 e1ffb0f1 edgar_igl
	-$(QEMU) -p 32768 ./test-mmap 32768
61 e1ffb0f1 edgar_igl
62 9d16dd55 bellard
# generic Linux and CPU test
63 9d16dd55 bellard
linux-test: linux-test.c
64 9d16dd55 bellard
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< -lm
65 9d16dd55 bellard
66 4d1135e4 bellard
# speed test
67 04369ff2 bellard
sha1-i386: sha1.c
68 4d1135e4 bellard
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
69 4d1135e4 bellard
70 04369ff2 bellard
sha1: sha1.c
71 04369ff2 bellard
	$(HOST_CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
72 04369ff2 bellard
73 04369ff2 bellard
speed: sha1 sha1-i386
74 4d1135e4 bellard
	time ./sha1
75 3ef693a0 bellard
	time $(QEMU) ./sha1-i386
76 4d1135e4 bellard
77 c3c7c292 bellard
# vm86 test
78 c3c7c292 bellard
runcom: runcom.c
79 c3c7c292 bellard
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
80 c3c7c292 bellard
81 039d3da3 bellard
# NOTE: -fomit-frame-pointer is currently needed : this is a bug in libqemu
82 5f650495 Isaku Yamahata
qruncom: qruncom.c ../ioport-user.c ../i386-user/libqemu.a
83 2d7a3b9d bellard
	$(CC) $(CFLAGS) -fomit-frame-pointer $(LDFLAGS) -I../target-i386 -I.. -I../i386-user -I../fpu \
84 5f650495 Isaku Yamahata
              -o $@ $(filter %.c, $^) -L../i386-user -lqemu -lm
85 039d3da3 bellard
86 394411ac bellard
# arm test
87 394411ac bellard
hello-arm: hello-arm.o
88 394411ac bellard
	arm-linux-ld -o $@ $<
89 394411ac bellard
90 394411ac bellard
hello-arm.o: hello-arm.c
91 394411ac bellard
	arm-linux-gcc -Wall -g -O2 -c -o $@ $<
92 394411ac bellard
93 18c9b560 balrog
test-arm-iwmmxt: test-arm-iwmmxt.s
94 18c9b560 balrog
	cpp < $< | arm-linux-gnu-gcc -Wall -static -march=iwmmxt -mabi=aapcs -x assembler - -o $@
95 18c9b560 balrog
96 e4630047 ths
# MIPS test
97 e4630047 ths
hello-mips: hello-mips.c
98 e4630047 ths
	mips-linux-gnu-gcc -nostdlib -static -mno-abicalls -fno-PIC -mabi=32 -Wall -Wextra -g -O2 -o $@ $<
99 e4630047 ths
100 e4630047 ths
hello-mipsel: hello-mips.c
101 e4630047 ths
	mipsel-linux-gnu-gcc -nostdlib -static -mno-abicalls -fno-PIC -mabi=32 -Wall -Wextra -g -O2 -o $@ $<
102 e4630047 ths
103 e7daa605 ths
# testsuite for the CRIS port.
104 e7daa605 ths
test-cris:
105 e7daa605 ths
	$(MAKE) -C cris check
106 e7daa605 ths
107 7d13299d bellard
clean:
108 11650e36 bellard
	rm -f *~ *.o test-i386.out test-i386.ref \
109 11650e36 bellard
           test-x86_64.log test-x86_64.ref qruncom $(TESTS)