Statistics
| Branch: | Revision:

root / tests / Makefile @ 001faf32

History | View | Annotate | Download (2.7 kB)

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