diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-10-04 22:02:44 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-10-04 22:02:44 -0700 |
commit | 1b221bed2547b7432d873074bfc62907f504aed7 (patch) | |
tree | fdaa9c9050740b7e22e61dcb7f07b734bc1069ad /test/Makefile | |
parent | 9c209cc2568f23be5373bd46bf459f9bd9328ee1 (diff) | |
download | nasm-1b221bed2547b7432d873074bfc62907f504aed7.tar.gz nasm-1b221bed2547b7432d873074bfc62907f504aed7.tar.bz2 nasm-1b221bed2547b7432d873074bfc62907f504aed7.zip |
test/Makefile: rule to run performtest --diff
Rule to run performtest with the --diff option.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile index cc3fe3c..fa949f6 100644 --- a/test/Makefile +++ b/test/Makefile @@ -31,6 +31,9 @@ golden: performtest.pl $(TESTS) test: performtest.pl $(NASM) $(TESTS) $(PERL) performtest.pl --nasm='$(NASM)' $(TESTS) +diff: performtest.pl $(NASM) $(TESTS) + $(PERL) performtest.pl --diff --nasm='$(NASM)' $(TESTS) + clean: rm -f *.com *.o *.o64 *.obj *.obj64 *.exe *.lst *.bin rm -rf testresults |