File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -144,8 +144,9 @@ all: $(CATCH_TEST)
144144clean : java-testing-utils-clean
145145
146146test : $(CATCH_TEST )
147- if ! ./$( CATCH_TEST) -l | grep -q " ^$( N_CATCH_TESTS) test cases" ; then \
148- ./$(CATCH_TEST ) -l ; fi
147+ # Include hidden tests by specifying "*,[.]" for tests to count
148+ if ! ./$( CATCH_TEST) " *,[.]" -l | grep -q " ^$( N_CATCH_TESTS) matching test cases" ; then \
149+ ./$(CATCH_TEST ) " *,[.]" -l ; fi
149150 ./$(CATCH_TEST ) ${TAGS}
150151
151152
Original file line number Diff line number Diff line change @@ -204,8 +204,9 @@ all: $(CATCH_TEST)
204204clean : testing-utils-clean
205205
206206test : $(CATCH_TEST )
207- if ! ./$( CATCH_TEST) -l | grep -q " ^$( N_CATCH_TESTS) test cases" ; then \
208- ./$(CATCH_TEST ) -l ; fi
207+ # Include hidden tests by specifying "*,[.]" for tests to count
208+ if ! ./$( CATCH_TEST) " *,[.]" -l | grep -q " ^$( N_CATCH_TESTS) matching test cases" ; then \
209+ ./$(CATCH_TEST ) " *,[.]" -l ; fi
209210 ./$(CATCH_TEST ) ${TAGS}
210211
211212
You can’t perform that action at this time.
0 commit comments