Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
More fixes for races in the exceptions tester
Browse files Browse the repository at this point in the history
  • Loading branch information
schveiguy committed Sep 18, 2015
1 parent 60bb700 commit 00f8e41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/exceptions/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ $(ROOT)/unittest_assert.done: $(ROOT)/unittest_assert

$(ROOT)/line_trace.done: $(ROOT)/line_trace
@echo Testing line_trace
@rm -f line_trace.output
$(QUIET)./$(ROOT)/line_trace $(RUN_ARGS) >line_trace.output
$(QUIET)$(SED) "s/\[0x[0-9a-f]*\]/\[ADDR\]/g" line_trace.output | $(DIFF) line_trace.exp -
@rm -f $(ROOT)/line_trace.output
$(QUIET)./$(ROOT)/line_trace $(RUN_ARGS) > $(ROOT)/line_trace.output
$(QUIET)$(SED) "s/\[0x[0-9a-f]*\]/\[ADDR\]/g" $(ROOT)/line_trace.output | $(DIFF) line_trace.exp -
@touch $@

$(ROOT)/unittest_assert: DFLAGS+=-unittest
Expand Down

0 comments on commit 00f8e41

Please sign in to comment.