diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-03-23 20:17:16 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-03-23 20:17:16 +0000 |
commit | 3ef693a03205217a5def9318b443c8cb6de17217 (patch) | |
tree | fa12f6de6be59ef2324b119ec0971ec28fa98266 /tests | |
parent | b03c60f35194db4ba1f53673ab02ade29f54701e (diff) |
distribution patchesv0.1.0
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@44 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Makefile b/tests/Makefile index 33623843d5..495dbf3f4c 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -8,7 +8,7 @@ TESTS=testclone testsig testthread sha1-i386 test-i386 endif TESTS+=sha1 -GEMU=../gemu +QEMU=../qemu all: $(TESTS) @@ -34,7 +34,7 @@ test: test-i386 ifeq ($(ARCH),i386) ./test-i386 > test-i386.ref endif - $(GEMU) test-i386 > test-i386.out + $(QEMU) test-i386 > test-i386.out @if diff -u test-i386.ref test-i386.out ; then echo "Auto Test OK"; fi # speed test @@ -46,7 +46,7 @@ sha1: sha1.c speed: sha1 sha1-i386 time ./sha1 - time $(GEMU) ./sha1-i386 + time $(QEMU) ./sha1-i386 clean: rm -f *~ *.o $(TESTS) |