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)
144
144
clean : java-testing-utils-clean
145
145
146
146
test : $(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
149
150
./$(CATCH_TEST ) ${TAGS}
150
151
151
152
Original file line number Diff line number Diff line change @@ -204,8 +204,9 @@ all: $(CATCH_TEST)
204
204
clean : testing-utils-clean
205
205
206
206
test : $(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
209
210
./$(CATCH_TEST ) ${TAGS}
210
211
211
212
You can’t perform that action at this time.
0 commit comments