Skip to content

Commit

Permalink
Run test-tool in the order of the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed Jul 22, 2019
1 parent 08ea924 commit 28ae30b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions defs/gmake.mk
Expand Up @@ -12,7 +12,7 @@ TEST_DEPENDS := $(filter-out commit $(TEST_TARGETS),$(MAKECMDGOALS))
TEST_TARGETS := $(patsubst great,exam,$(TEST_TARGETS))
TEST_DEPENDS := $(filter-out great $(TEST_TARGETS),$(TEST_DEPENDS))
TEST_TARGETS := $(patsubst exam,check,$(TEST_TARGETS))
TEST_TARGETS := $(patsubst check,test-spec test-all test-testframework test-short,$(TEST_TARGETS))
TEST_TARGETS := $(patsubst check,test-spec test-all test-tool test-short,$(TEST_TARGETS))
TEST_TARGETS := $(patsubst test-rubyspec,test-spec,$(TEST_TARGETS))
TEST_DEPENDS := $(filter-out exam check test-spec $(TEST_TARGETS),$(TEST_DEPENDS))
TEST_TARGETS := $(patsubst love,check,$(TEST_TARGETS))
Expand Down Expand Up @@ -64,7 +64,7 @@ endif

ORDERED_TEST_TARGETS := $(filter $(TEST_TARGETS), \
btest-ruby test-knownbug test-basic \
test-testframework test-ruby test-all \
test-testframework test-tool test-ruby test-all \
test-spec test-bundler-prepare test-bundler \
)
prev_test := $(if $(filter test-spec,$(ORDERED_TEST_TARGETS)),test-spec-precheck)
Expand Down

0 comments on commit 28ae30b

Please sign in to comment.