Commit e91e41034dab404e7dd392791c316bb2ad3f68ae
1 parent
16b7182d
Specify junit suffix
Showing
1 changed file
with
2 additions
and
1 deletions
make/rules.mk
| ... | ... | @@ -53,7 +53,8 @@ define run_qtest |
| 53 | 53 | @echo running qtest-driver for $(1) |
| 54 | 54 | @(cd $(1)/$(OUTPUT_DIR); \ |
| 55 | 55 | if TC_SRCS="$(foreach T,$(TC_SRCS_$(1)),../../$(T))" \ |
| 56 | - $(QTEST) -bindirs .:.. -datadir ../qtest -covdir ..; then \ | |
| 56 | + $(QTEST) -bindirs .:.. -datadir ../qtest -covdir .. \ | |
| 57 | + -junit-suffix `basename $(1)`; then \ | |
| 57 | 58 | true; \ |
| 58 | 59 | else \ |
| 59 | 60 | if test "$(SHOW_FAILED_TEST_OUTPUT)" = "1"; then \ | ... | ... |