2003-08-10 23:39:31 +02:00
|
|
|
include ../config-host.mak
|
2003-03-07 00:23:54 +01:00
|
|
|
|
2003-02-24 21:14:06 +01:00
|
|
|
CFLAGS=-Wall -O2 -g
|
|
|
|
LDFLAGS=
|
|
|
|
|
2003-03-07 00:23:54 +01:00
|
|
|
ifeq ($(ARCH),i386)
|
2003-10-28 00:56:59 +01:00
|
|
|
TESTS=linux-test testthread sha1-i386 test-i386 runcom
|
2003-03-07 00:23:54 +01:00
|
|
|
endif
|
2003-10-28 00:56:59 +01:00
|
|
|
TESTS+=sha1# test_path
|
|
|
|
#TESTS+=test_path
|
2003-03-01 18:13:26 +01:00
|
|
|
|
2003-10-28 01:09:43 +01:00
|
|
|
QEMU=../i386-user/qemu-i386
|
2003-02-24 21:14:06 +01:00
|
|
|
|
|
|
|
all: $(TESTS)
|
|
|
|
|
2003-06-15 22:42:31 +02:00
|
|
|
hello-i386: hello-i386.c
|
2003-02-24 21:14:06 +01:00
|
|
|
$(CC) -nostdlib $(CFLAGS) -static $(LDFLAGS) -o $@ $<
|
2003-06-15 22:42:31 +02:00
|
|
|
strip $@
|
2003-02-24 21:14:06 +01:00
|
|
|
|
2003-03-22 18:31:38 +01:00
|
|
|
testthread: testthread.c
|
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< -lpthread
|
|
|
|
|
2003-04-11 02:13:04 +02:00
|
|
|
test_path: test_path.c
|
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
|
|
|
./$@ || { rm $@; exit 1; }
|
|
|
|
|
2003-03-20 23:33:23 +01:00
|
|
|
# i386 emulation test (test various opcodes) */
|
2003-05-16 15:58:37 +02:00
|
|
|
test-i386: test-i386.c test-i386-code16.S test-i386-vm86.S \
|
2003-03-22 16:20:50 +01:00
|
|
|
test-i386.h test-i386-shift.h test-i386-muldiv.h
|
2003-10-28 00:56:59 +01:00
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -static -o $@ test-i386.c \
|
2003-05-16 15:58:37 +02:00
|
|
|
test-i386-code16.S test-i386-vm86.S -lm
|
2003-02-24 21:14:06 +01:00
|
|
|
|
2003-03-20 23:33:23 +01:00
|
|
|
ifeq ($(ARCH),i386)
|
2003-06-09 17:30:37 +02:00
|
|
|
test: test-i386
|
2003-02-24 21:14:06 +01:00
|
|
|
./test-i386 > test-i386.ref
|
2003-06-09 17:30:37 +02:00
|
|
|
else
|
|
|
|
test:
|
2003-03-20 23:33:23 +01:00
|
|
|
endif
|
2003-03-23 21:17:16 +01:00
|
|
|
$(QEMU) test-i386 > test-i386.out
|
2003-02-24 21:14:06 +01:00
|
|
|
@if diff -u test-i386.ref test-i386.out ; then echo "Auto Test OK"; fi
|
|
|
|
|
2003-10-28 00:56:59 +01:00
|
|
|
# generic Linux and CPU test
|
|
|
|
linux-test: linux-test.c
|
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< -lm
|
|
|
|
|
2003-02-24 21:14:06 +01:00
|
|
|
# speed test
|
2003-03-20 23:33:23 +01:00
|
|
|
sha1-i386: sha1.c
|
2003-02-24 21:14:06 +01:00
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
|
|
|
|
2003-03-20 23:33:23 +01:00
|
|
|
sha1: sha1.c
|
|
|
|
$(HOST_CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
speed: sha1 sha1-i386
|
2003-02-24 21:14:06 +01:00
|
|
|
time ./sha1
|
2003-03-23 21:17:16 +01:00
|
|
|
time $(QEMU) ./sha1-i386
|
2003-02-24 21:14:06 +01:00
|
|
|
|
2003-03-29 17:44:42 +01:00
|
|
|
# vm86 test
|
|
|
|
runcom: runcom.c
|
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
|
|
|
|
|
2003-06-15 21:37:07 +02: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 $@ $<
|
|
|
|
|
2004-01-04 17:08:39 +01:00
|
|
|
# XXX: find a way to compile easily a test for each arch
|
|
|
|
test2:
|
|
|
|
@for arch in i386 arm sparc ppc; do \
|
|
|
|
../$${arch}-user/qemu-$${arch} $${arch}/ls -l linux-test.c ; \
|
|
|
|
done
|
|
|
|
|
2003-03-07 00:23:54 +01:00
|
|
|
clean:
|
2004-01-25 16:47:27 +01:00
|
|
|
rm -f *~ *.o test-i386.out test-i386.ref $(TESTS)
|