aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Makefile
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-10-27 23:56:59 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-10-27 23:56:59 +0000
commit9d16dd550ee51431d83e9fbfbc0adc022219b4c1 (patch)
treefa5698d2412eebf5c3361c743be4b121a312c77f /tests/Makefile
parent78d6da976c1d81e9274435d214d03d4e13aad5a3 (diff)
make cpu test static
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@415 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile19
1 files changed, 9 insertions, 10 deletions
diff --git a/tests/Makefile b/tests/Makefile
index f4e1b22f4..6daaaa2bb 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -4,11 +4,12 @@ CFLAGS=-Wall -O2 -g
LDFLAGS=
ifeq ($(ARCH),i386)
-TESTS=testclone testsig testthread sha1-i386 test-i386 runcom
+TESTS=linux-test testthread sha1-i386 test-i386 runcom
endif
-TESTS+=sha1 test_path
+TESTS+=sha1# test_path
+#TESTS+=test_path
-QEMU=../i386/qemu
+QEMU=../i386/qemu-i386
all: $(TESTS)
@@ -16,12 +17,6 @@ hello-i386: hello-i386.c
$(CC) -nostdlib $(CFLAGS) -static $(LDFLAGS) -o $@ $<
strip $@
-testclone: testclone.c
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
-
-testsig: testsig.c
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
-
testthread: testthread.c
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< -lpthread
@@ -32,7 +27,7 @@ test_path: test_path.c
# i386 emulation test (test various opcodes) */
test-i386: test-i386.c test-i386-code16.S test-i386-vm86.S \
test-i386.h test-i386-shift.h test-i386-muldiv.h
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ test-i386.c \
+ $(CC) $(CFLAGS) $(LDFLAGS) -static -o $@ test-i386.c \
test-i386-code16.S test-i386-vm86.S -lm
ifeq ($(ARCH),i386)
@@ -44,6 +39,10 @@ endif
$(QEMU) test-i386 > test-i386.out
@if diff -u test-i386.ref test-i386.out ; then echo "Auto Test OK"; fi
+# generic Linux and CPU test
+linux-test: linux-test.c
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< -lm
+
# speed test
sha1-i386: sha1.c
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<