diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-05-16 13:58:37 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-05-16 13:58:37 +0000 |
commit | 5132455efe7555d707041fecb48be5bdcba7acf5 (patch) | |
tree | c9c0a236fb2974625c19b4bfb091653a17656c72 /tests | |
parent | c0ad5542a8cc68d1d9b18ed5e2d43de6b6fc60bf (diff) | |
download | qemu-5132455efe7555d707041fecb48be5bdcba7acf5.zip qemu-5132455efe7555d707041fecb48be5bdcba7acf5.tar.gz qemu-5132455efe7555d707041fecb48be5bdcba7acf5.tar.bz2 |
test-i386 update
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@176 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile index 6a55d20..5f6479e 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -30,9 +30,10 @@ test_path: test_path.c ./$@ || { rm $@; exit 1; } # i386 emulation test (test various opcodes) */ -test-i386: test-i386.c test-i386-code16.S \ +test-i386: test-i386.c test-i386-code16.S test-i386-vm86.S \ test-i386.h test-i386-shift.h test-i386-muldiv.h - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ test-i386.c test-i386-code16.S -lm + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ test-i386.c \ + test-i386-code16.S test-i386-vm86.S -lm test: test-i386 ifeq ($(ARCH),i386) |