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