We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51dce26 commit be03f16Copy full SHA for be03f16
Makefile.in
@@ -61,6 +61,7 @@ EMPTY = : >
61
SIDE = @: Generated by side effect
62
63
PYTHON3 = @PYTHON3@
64
+GREP = grep
65
66
INSTALL = @INSTALL@
67
INSTALL_PROGRAM = @INSTALL_PROGRAM@
@@ -578,7 +579,9 @@ $(travis_version): version
578
579
printf 'NASM version %s compiled on ?\n' `cat version` > $@
580
581
travis: $(PROGS) $(travis_version)
- $(PYTHON3) travis/nasm-t.py run > travis.log
582
+ -$(PYTHON3) travis/nasm-t.py run > travis.log
583
+ @if $(GREP) FAIL travis.log; then exit 1; else \
584
+ echo '=== All tests PASS ==='; fi
585
586
#
587
# Rules to run autogen if necessary
0 commit comments