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

Commit

Permalink
fix trailing ws and remove unused rule
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinNowak committed Oct 5, 2016
1 parent 20f84a3 commit cccf03e
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions test/exceptions/Makefile
Expand Up @@ -26,17 +26,12 @@ $(ROOT)/unittest_assert.done: STDERR_EXP="unittest_assert msg"
$(ROOT)/invalid_memory_operation.done: STDERR_EXP="InvalidMemoryOperationError"
$(ROOT)/unknown_gc.done: STDERR_EXP="'unknowngc'"
$(ROOT)/static_dtor.done: STDERR_EXP="dtor_called_more_than_once"
$(ROOT)/static_dtor.done: NEGATE=!
$(ROOT)/static_dtor.done: NEGATE=!
$(ROOT)/%.done: $(ROOT)/%
@echo Testing $*
$(NEGATE)$(QUIET)$(TIMELIMIT)$(ROOT)/$* $(RUN_ARGS) 2>&1 1>/dev/null | grep -qF $(STDERR_EXP)
$(NEGATE) $(QUIET)$(TIMELIMIT)$(ROOT)/$* $(RUN_ARGS) 2>&1 1>/dev/null | grep -qF $(STDERR_EXP)
@touch $@

#$(ROOT)/static_dtor.done: $(ROOT)/static_dtor
# @echo Testing static_dtor
# ! $(QUIET)$(TIMELIMIT)$(ROOT)/static_dtor $(RUN_ARGS) 2>&1 1>/dev/null | grep -qF $(STDERR_EXP)
# @touch $@

$(ROOT)/unittest_assert: DFLAGS+=-unittest
$(ROOT)/line_trace: DFLAGS+=-L--export-dynamic
$(ROOT)/%: $(SRC)/%.d
Expand Down

0 comments on commit cccf03e

Please sign in to comment.