From acb0e8dcad4c27b910135c5860948b874c67251e Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Fri, 23 Sep 2011 12:17:20 -0700 Subject: [PATCH] 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). --- mk/tests.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/tests.mk b/mk/tests.mk index 6b28c16b2d1..74e50e62f66 100644 --- a/mk/tests.mk +++ b/mk/tests.mk @@ -329,4 +329,4 @@ test/$(FT_DRIVER)$(X): test/$(FT_DRIVER).rs stage2/lib/$(FT_LIB) $(SREQ2) $(STAGE2) -o $@ $< test/$(FT_DRIVER).out: test/$(FT_DRIVER)$(X) $(SREQ2) - $(Q)$(call CFG_RUN_TEST, $<) | tee $@ + $(Q)$(call CFG_RUN_TEST, $<)