2004-10-05 01:23:09 +04:00
|
|
|
-include ../config-host.mak
|
2003-03-07 02:23:54 +03:00
|
|
|
|
2006-06-25 22:02:38 +04:00
|
|
|
CFLAGS=-Wall -O2 -g
|
|
|
|
#CFLAGS+=-msse2
|
2003-02-24 23:14:06 +03:00
|
|
|
LDFLAGS=
|
|
|
|
|
2003-03-07 02:23:54 +03:00
|
|
|
ifeq ($(ARCH),i386)
|
2003-10-28 02:56:59 +03:00
|
|
|
TESTS=linux-test testthread sha1-i386 test-i386 runcom
|
2003-03-07 02:23:54 +03:00
|
|
|
endif
|
2005-03-03 01:19:12 +03:00
|
|
|
ifeq ($(ARCH),x86_64)
|
|
|
|
TESTS=test-x86_64
|
|
|
|
endif
|
2003-10-28 02:56:59 +03:00
|
|
|
TESTS+=sha1# test_path
|
|
|
|
#TESTS+=test_path
|
2003-03-01 20:13:26 +03:00
|
|
|
|
2007-02-05 23:51:14 +03:00
|
|
|
QEMU=../i386-linux-user/qemu-i386
|
2003-02-24 23:14:06 +03:00
|
|
|
|
|
|
|
all: $(TESTS)
|
|
|
|
|
2003-06-16 00:42:31 +04:00
|
|
|
hello-i386: hello-i386.c
|
2003-02-24 23:14:06 +03:00
|
|
|
$(CC) -nostdlib $(CFLAGS) -static $(LDFLAGS) -o $@ $<
|
2003-06-16 00:42:31 +04:00
|
|
|
strip $@
|
2003-02-24 23:14:06 +03:00
|
|
|
|
2003-03-22 20:31:38 +03:00
|
|
|
testthread: testthread.c
|
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< -lpthread
|
|
|
|
|
2003-04-11 04:13:04 +04:00
|
|
|
test_path: test_path.c
|
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
|
|
|
./$@ || { rm $@; exit 1; }
|
|
|
|
|
2005-03-03 01:19:12 +03:00
|
|
|
# i386/x86_64 emulation test (test various opcodes) */
|
2003-05-16 17:58:37 +04:00
|
|
|
test-i386: test-i386.c test-i386-code16.S test-i386-vm86.S \
|
2003-03-22 18:20:50 +03:00
|
|
|
test-i386.h test-i386-shift.h test-i386-muldiv.h
|
2005-03-03 01:19:12 +03:00
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -static -o $@ \
|
|
|
|
test-i386.c test-i386-code16.S test-i386-vm86.S -lm
|
|
|
|
|
|
|
|
test-x86_64: test-i386.c \
|
|
|
|
test-i386.h test-i386-shift.h test-i386-muldiv.h
|
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -static -o $@ test-i386.c -lm
|
2003-02-24 23:14:06 +03:00
|
|
|
|
2003-03-21 01:33:23 +03:00
|
|
|
ifeq ($(ARCH),i386)
|
2003-06-09 19:30:37 +04:00
|
|
|
test: test-i386
|
2003-02-24 23:14:06 +03:00
|
|
|
./test-i386 > test-i386.ref
|
2003-06-09 19:30:37 +04:00
|
|
|
else
|
|
|
|
test:
|
2003-03-21 01:33:23 +03:00
|
|
|
endif
|
2003-03-23 23:17:16 +03:00
|
|
|
$(QEMU) test-i386 > test-i386.out
|
2003-02-24 23:14:06 +03:00
|
|
|
@if diff -u test-i386.ref test-i386.out ; then echo "Auto Test OK"; fi
|
2004-04-23 01:37:55 +04:00
|
|
|
ifeq ($(ARCH),i386)
|
|
|
|
$(QEMU) -no-code-copy test-i386 > test-i386.out
|
|
|
|
@if diff -u test-i386.ref test-i386.out ; then echo "Auto Test OK (no code copy)"; fi
|
|
|
|
endif
|
2003-02-24 23:14:06 +03:00
|
|
|
|
2003-10-28 02:56:59 +03:00
|
|
|
# generic Linux and CPU test
|
|
|
|
linux-test: linux-test.c
|
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< -lm
|
|
|
|
|
2003-02-24 23:14:06 +03:00
|
|
|
# speed test
|
2003-03-21 01:33:23 +03:00
|
|
|
sha1-i386: sha1.c
|
2003-02-24 23:14:06 +03:00
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
|
|
|
|
2003-03-21 01:33:23 +03:00
|
|
|
sha1: sha1.c
|
|
|
|
$(HOST_CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
speed: sha1 sha1-i386
|
2003-02-24 23:14:06 +03:00
|
|
|
time ./sha1
|
2003-03-23 23:17:16 +03:00
|
|
|
time $(QEMU) ./sha1-i386
|
2003-02-24 23:14:06 +03:00
|
|
|
|
2003-03-29 19:44:42 +03:00
|
|
|
# vm86 test
|
|
|
|
runcom: runcom.c
|
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
|
|
|
|
2004-04-24 04:11:51 +04:00
|
|
|
# NOTE: -fomit-frame-pointer is currently needed : this is a bug in libqemu
|
|
|
|
qruncom: qruncom.c ../i386-user/libqemu.a
|
2005-12-18 22:28:08 +03:00
|
|
|
$(CC) $(CFLAGS) -fomit-frame-pointer $(LDFLAGS) -I../target-i386 -I.. -I../i386-user -I../fpu \
|
2004-04-24 04:11:51 +04:00
|
|
|
-o $@ $< -L../i386-user -lqemu -lm
|
|
|
|
|
2003-06-15 23:37:07 +04:00
|
|
|
# arm test
|
|
|
|
hello-arm: hello-arm.o
|
|
|
|
arm-linux-ld -o $@ $<
|
|
|
|
|
|
|
|
hello-arm.o: hello-arm.c
|
|
|
|
arm-linux-gcc -Wall -g -O2 -c -o $@ $<
|
|
|
|
|
2006-12-14 17:48:11 +03:00
|
|
|
# MIPS test
|
|
|
|
hello-mips: hello-mips.c
|
|
|
|
mips-linux-gnu-gcc -nostdlib -static -mno-abicalls -fno-PIC -mabi=32 -Wall -Wextra -g -O2 -o $@ $<
|
|
|
|
|
|
|
|
hello-mipsel: hello-mips.c
|
|
|
|
mipsel-linux-gnu-gcc -nostdlib -static -mno-abicalls -fno-PIC -mabi=32 -Wall -Wextra -g -O2 -o $@ $<
|
|
|
|
|
2004-01-04 19:08:39 +03:00
|
|
|
# XXX: find a way to compile easily a test for each arch
|
|
|
|
test2:
|
2005-12-07 00:44:55 +03:00
|
|
|
@for arch in i386 arm armeb sparc ppc mips mipsel; do \
|
2007-01-20 19:52:55 +03:00
|
|
|
../$${arch}-linux-user/qemu-$${arch} $${arch}/ls -l linux-test.c ; \
|
2004-01-04 19:08:39 +03:00
|
|
|
done
|
|
|
|
|
2003-03-07 02:23:54 +03:00
|
|
|
clean:
|
2005-04-27 01:39:25 +04:00
|
|
|
rm -f *~ *.o test-i386.out test-i386.ref \
|
|
|
|
test-x86_64.log test-x86_64.ref qruncom $(TESTS)
|