Revision a9523d14 tests/tcg/Makefile

b/tests/tcg/Makefile
22 22
	   testthread \
23 23
	   sha1-i386 \
24 24
	   test-i386 \
25
	   test-i386-fprem \
25 26
	   test-mmap \
26 27
	   # runcom
27 28

  
......
55 56
	-$(QEMU) test-i386 > test-i386.out
56 57
	@if diff -u test-i386.ref test-i386.out ; then echo "Auto Test OK"; fi
57 58

  
59
run-test-i386-fprem: test-i386-fprem
60
	./test-i386-fprem > test-i386-fprem.ref
61
	-$(QEMU) test-i386-fprem > test-i386-fprem.out
62
	@if diff -u test-i386-fprem.ref test-i386-fprem.out ; then echo "Auto Test OK"; fi
63

  
58 64
run-test-x86_64: test-x86_64
59 65
	./test-x86_64 > test-x86_64.ref
60 66
	-$(QEMU_X86_64) test-x86_64 > test-x86_64.out
......
93 99
	$(CC_I386) $(QEMU_INCLUDES) $(CFLAGS) $(LDFLAGS) -o $@ \
94 100
              $(<D)/test-i386.c $(<D)/test-i386-code16.S $(<D)/test-i386-vm86.S -lm
95 101

  
102
test-i386-fprem: test-i386-fprem.c
103
	$(CC_I386) $(QEMU_INCLUDES) $(CFLAGS) $(LDFLAGS) -o $@ $^
104

  
96 105
test-x86_64: test-i386.c \
97 106
           test-i386.h test-i386-shift.h test-i386-muldiv.h
98 107
	$(CC_X86_64) $(QEMU_INCLUDES) $(CFLAGS) $(LDFLAGS) -o $@ $(<D)/test-i386.c -lm

Also available in: Unified diff