Commit 6f7044faab193de2f1e8b66178e6b17de89e9841
1 parent
a5973fbf
update
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4602 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
2 additions
and
5 deletions
tests/Makefile
... | ... | @@ -5,13 +5,14 @@ CFLAGS=-Wall -O2 -g -fno-strict-aliasing |
5 | 5 | LDFLAGS= |
6 | 6 | |
7 | 7 | ifeq ($(ARCH),i386) |
8 | -TESTS=linux-test testthread sha1-i386 test-i386 runcom | |
8 | +TESTS=linux-test testthread sha1-i386 test-i386 | |
9 | 9 | endif |
10 | 10 | ifeq ($(ARCH),x86_64) |
11 | 11 | TESTS=test-x86_64 |
12 | 12 | endif |
13 | 13 | TESTS+=sha1# test_path |
14 | 14 | #TESTS+=test_path |
15 | +#TESTS+=runcom | |
15 | 16 | |
16 | 17 | QEMU=../i386-linux-user/qemu-i386 |
17 | 18 | |
... | ... | @@ -46,10 +47,6 @@ test: |
46 | 47 | endif |
47 | 48 | $(QEMU) test-i386 > test-i386.out |
48 | 49 | @if diff -u test-i386.ref test-i386.out ; then echo "Auto Test OK"; fi |
49 | -ifeq ($(ARCH),i386) | |
50 | - $(QEMU) -no-code-copy test-i386 > test-i386.out | |
51 | - @if diff -u test-i386.ref test-i386.out ; then echo "Auto Test OK (no code copy)"; fi | |
52 | -endif | |
53 | 50 | |
54 | 51 | .PHONY: test-mmap |
55 | 52 | test-mmap: test-mmap.c | ... | ... |