test/Makefile: add rules for the automatic tests

Add Makefile rules to run the automatic tests.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin 2008-10-04 21:59:38 -07:00
parent 833caeab28
commit 13d9d869a5

View File

@ -1,8 +1,9 @@
.SUFFIXES: .bin .o .o64 .obj .obj64 .exe .asm .lst .pl
NASM = ../nasm
NASM = ../nasm
NASMOPT = -Ox -I../misc
PERL = perl
PERL = perl
TESTS = $(wildcard *.asm)
%.bin: %.asm $(NASM)
$(NASM) $(NASMOPT) -f bin -o $@ -l $*.lst $<
@ -24,5 +25,15 @@ PERL = perl
all:
golden: performtest.pl $(TESTS)
$(PERL) performtest.pl --golden --nasm='$(NASM)' $(TESTS)
test: performtest.pl $(NASM) $(TESTS)
$(PERL) performtest.pl --nasm='$(NASM)' $(TESTS)
clean:
rm -f *.com *.o *.o64 *.obj *.obj64 *.exe *.lst *.bin
rm -rf testresults
spotless: clean
rm -rf golden