Skip to content

Commit acb0e8d

Browse files
committed
Don't pipe check-fast results through tee
This was having the effect of scrubbing failure error codes. The only affect of removing this should be that the .out file isn't generated, so subsequent make invocations will re-run the tests (which is how our other tests work anyway).
1 parent 82935c2 commit acb0e8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mk/tests.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,4 +329,4 @@ test/$(FT_DRIVER)$(X): test/$(FT_DRIVER).rs stage2/lib/$(FT_LIB) $(SREQ2)
329329
$(STAGE2) -o $@ $<
330330

331331
test/$(FT_DRIVER).out: test/$(FT_DRIVER)$(X) $(SREQ2)
332-
$(Q)$(call CFG_RUN_TEST, $<) | tee $@
332+
$(Q)$(call CFG_RUN_TEST, $<)

0 commit comments

Comments
 (0)