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