Skip to content

Commit

Permalink
Fixed the test Makefile to run the tests in correct order (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
jastier authored Apr 23, 2022
1 parent fe54d6b commit 11db900
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/mqtt_agent_testing/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,29 @@ test: FORCE

# A complete tour of every subscribed topic tested
test_everything: FORCE
make test_trial_start -s
make test_asr -s
make test_chat -s
make test_trial_start -s
make test_trial_stop -s

test_trial_start: FORCE
cd trial_start; make test -s

test_asr: FORCE
cd asr; make test -s

test_chat: FORCE
cd chat; make test -s

test_trial_start: FORCE
cd trial_start; make test -s

test_trial_stop: FORCE
cd trial_stop; make test -s


# remove intermediate test result files
clean: FORCE
cd trial_start; make clean -s
cd asr; make clean -s
cd chat; make clean -s
cd trial_start; make clean -s
cd trial_stop; make clean -s

show_received_files: FORCE
Expand Down

0 comments on commit 11db900

Please sign in to comment.