aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-06-09 15:30:37 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2003-06-09 15:30:37 +0000
commitd30329297bf76338326edd8ee39342d0fd37d0df (patch)
tree5407fa27df05fd718e497fb01ca4af37539dc7bd /tests
parenta95c67907cce5b03269581b77f014ec51b98da36 (diff)
removed unused dependancy if non x86
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@222 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 5f6479e204..4b58c197ef 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -35,9 +35,11 @@ test-i386: test-i386.c test-i386-code16.S test-i386-vm86.S \
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ test-i386.c \
test-i386-code16.S test-i386-vm86.S -lm
-test: test-i386
ifeq ($(ARCH),i386)
+test: test-i386
./test-i386 > test-i386.ref
+else
+test:
endif
$(QEMU) test-i386 > test-i386.out
@if diff -u test-i386.ref test-i386.out ; then echo "Auto Test OK"; fi