diff options
author | bellard | 2003-10-28 00:56:59 +0100 |
---|---|---|
committer | bellard | 2003-10-28 00:56:59 +0100 |
commit | 9d16dd550ee51431d83e9fbfbc0adc022219b4c1 (patch) | |
tree | fa5698d2412eebf5c3361c743be4b121a312c77f /tests | |
parent | license (diff) | |
download | qemu-9d16dd550ee51431d83e9fbfbc0adc022219b4c1.tar.gz qemu-9d16dd550ee51431d83e9fbfbc0adc022219b4c1.tar.xz qemu-9d16dd550ee51431d83e9fbfbc0adc022219b4c1.zip |
make cpu test static
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@415 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/tests/Makefile b/tests/Makefile index f4e1b22f44..6daaaa2bb8 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 $@ $< |