Commit c3c7c29246a03afda6eb4c777b0f5d125e80669c

Authored by bellard
1 parent 31bb950b

added runcom


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@50 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 5 additions and 1 deletions
tests/Makefile
... ... @@ -4,7 +4,7 @@ CFLAGS=-Wall -O2 -g
4 4 LDFLAGS=
5 5  
6 6 ifeq ($(ARCH),i386)
7   -TESTS=testclone testsig testthread sha1-i386 test-i386
  7 +TESTS=testclone testsig testthread sha1-i386 test-i386 runcom
8 8 endif
9 9 TESTS+=sha1
10 10  
... ... @@ -48,5 +48,9 @@ speed: sha1 sha1-i386
48 48 time ./sha1
49 49 time $(QEMU) ./sha1-i386
50 50  
  51 +# vm86 test
  52 +runcom: runcom.c
  53 + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
  54 +
51 55 clean:
52 56 rm -f *~ *.o $(TESTS)
... ...