diff options
author | teor <teor@torproject.org> | 2018-08-24 10:20:30 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2018-08-29 10:47:05 +1000 |
commit | 3e298633ca212447b4a230b970a293ce694ed3bb (patch) | |
tree | 6794f6b6c9786ea2ef71af2cfa975f8435486021 /Makefile.am | |
parent | cc4ea34a262993bf69836d1bffa3175e24261565 (diff) | |
download | tor-3e298633ca212447b4a230b970a293ce694ed3bb.tar.gz tor-3e298633ca212447b4a230b970a293ce694ed3bb.zip |
Test: consistently use $(TEST_NETWORK_ALL_LOG_DIR) in Makefile.am
Part of 27295.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index f06d0e3734..b19a4bf966 100644 --- a/Makefile.am +++ b/Makefile.am @@ -128,7 +128,7 @@ test-network-all: need-chutney-path test-driver $(TESTING_TOR_BINARY) src/tools/ $(SHELL) $(top_srcdir)/test-driver --test-name $$f --log-file $(TEST_NETWORK_ALL_LOG_DIR)/$$f.log --trs-file $(TEST_NETWORK_ALL_LOG_DIR)/$$f.trs $(TEST_NETWORK_ALL_DRIVER_FLAGS) $(top_srcdir)/src/test/test-network.sh --flavor $$f $(TEST_NETWORK_FLAGS); \ done; \ echo "Log and result files are available in $(TEST_NETWORK_ALL_LOG_DIR)."; \ - ! grep -q FAIL test_network_log/*.trs + ! grep -q FAIL $(TEST_NETWORK_ALL_LOG_DIR)/*.trs need-stem-path: @if test ! -d "$$STEM_SOURCE_DIR"; then \ |