aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorteor <teor@torproject.org>2020-03-16 20:54:20 +1000
committerteor <teor@torproject.org>2020-03-16 20:54:20 +1000
commitc22696e3606f9873ddbf02b11dc91214853b8317 (patch)
tree6fc59e3e4cfc5347fa6af2cdc96f6fc5f60016b5
parent7a9e2a261b44b93e244c04593dee8f7757ba32bc (diff)
parent1c688ba925e17967fa7b2abe2a41327914421fb3 (diff)
downloadtor-c22696e3606f9873ddbf02b11dc91214853b8317.tar.gz
tor-c22696e3606f9873ddbf02b11dc91214853b8317.zip
Merge branch 'maint-0.3.5' into maint-0.4.1
-rw-r--r--.travis.yml2
-rw-r--r--changes/ticket327923
2 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 14b0e12c7a..987e56cc7d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -238,7 +238,7 @@ after_failure:
## `make distcheck` puts it somewhere different.
- if [[ "$DISTCHECK" != "" ]]; then make show-distdir-testlog || echo "make failed"; fi
- if [[ "$DISTCHECK" != "" ]]; then make show-distdir-core || echo "make failed"; fi
- - if [[ "$CHUTNEY" != "" ]]; then ls test_network_log || echo "ls failed"; cat test_network_log/* || echo "cat failed"; fi
+ - if [[ "$CHUTNEY" != "" ]]; then "$CHUTNEY_PATH/tools/diagnostics.sh" || echo "diagnostics failed"; ls test_network_log || echo "ls failed"; cat test_network_log/* || echo "cat failed"; fi
- if [[ "$TEST_STEM" != "" ]]; then tail -1000 "$STEM_SOURCE_DIR"/test/data/tor_log || echo "tail failed"; fi
- if [[ "$TEST_STEM" != "" ]]; then grep -v "SocketClosed" stem.log | tail -1000 || echo "grep | tail failed"; fi
diff --git a/changes/ticket32792 b/changes/ticket32792
new file mode 100644
index 0000000000..553cf0ca81
--- /dev/null
+++ b/changes/ticket32792
@@ -0,0 +1,3 @@
+ o Testing:
+ - When a Travis chutney job fails, use chutney's new "diagnostics.sh" tool
+ to produce detailed diagnostic output. Closes ticket 32792.