aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile6
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)