]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Travis: Show stem's tor log after failure
authorteor <teor@torproject.org>
Mon, 22 Apr 2019 01:48:07 +0000 (11:48 +1000)
committerteor <teor@torproject.org>
Mon, 22 Apr 2019 01:48:07 +0000 (11:48 +1000)
Closes ticket 30234.

.travis.yml
changes/ticket30234 [new file with mode: 0644]

index 89040d8222bf3223376fa6b131540291631457ee..1b04fa48fceed8a153d28c93bd41565c3878908f 100644 (file)
@@ -225,6 +225,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 [[ "$TEST_STEM" != "" ]]; then cat "$STEM_SOURCE_DIR"/test/data/tor_log || echo "cat failed"; fi
 
 before_cache:
   ## Delete all gcov files.
diff --git a/changes/ticket30234 b/changes/ticket30234
new file mode 100644 (file)
index 0000000..5a0076b
--- /dev/null
@@ -0,0 +1,2 @@
+  o Testing (continuous integration):
+    - In Travis, show stem's tor log after failure. Closes ticket 30234.