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 e0f33bd commit 9e37e6dCopy full SHA for 9e37e6d
Makefile.in
@@ -65,7 +65,7 @@ tests/results:$(TEST_RESULT)
65
@echo -------------- Test Results ---------------
66
@cat tests/results
67
@echo -------------------------------------------
68
- @ ! grep -qv OK tests/results
+ @ ! grep -qv 'OK\|Skipped' tests/results
69
70
71
#Build a test executable from a test program. On compile error,
@@ -87,6 +87,9 @@ tests/%.result_: tests/%.test
87
if [ $$a -ge 128 and ] ; \
88
then \
89
echo Crash!! > $@ ; \
90
+ elif [ $$a -eq 42 ] ;\
91
+ then \
92
+ echo Skipped > $@ ; \
93
elif [ $$a -ne 126 ] ;\
94
95
echo Failed > $@ ; \
0 commit comments