mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 20:33:31 +01:00
Merge remote-tracking branch 'tor-github/pr/402'
This commit is contained in:
commit
2c5c17510a
@ -210,6 +210,7 @@ after_failure:
|
|||||||
- if [[ "$DISTCHECK" == "" ]]; then cat test-suite.log || echo "cat failed"; fi
|
- if [[ "$DISTCHECK" == "" ]]; then cat test-suite.log || echo "cat failed"; fi
|
||||||
## `make distcheck` puts it somewhere different.
|
## `make distcheck` puts it somewhere different.
|
||||||
- if [[ "$DISTCHECK" != "" ]]; then make show-distdir-testlog || echo "make failed"; fi
|
- if [[ "$DISTCHECK" != "" ]]; then make show-distdir-testlog || echo "make failed"; fi
|
||||||
|
- if [[ "$DISTCHECK" != "" ]]; then make show-distdir-core || echo "make failed"; fi
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
## If this build was one that produced coverage, upload it.
|
## If this build was one that produced coverage, upload it.
|
||||||
|
@ -452,6 +452,15 @@ show-distdir-testlog:
|
|||||||
else \
|
else \
|
||||||
cat $(distdir)/_build/$(TEST_SUITE_LOG); fi
|
cat $(distdir)/_build/$(TEST_SUITE_LOG); fi
|
||||||
|
|
||||||
|
# Similarly, this relies on automake internals to run file on an
|
||||||
|
# intermittent core file whose provenance is not known to us. See
|
||||||
|
# ticket 26787.
|
||||||
|
show-distdir-core:
|
||||||
|
@if test -d "$(distdir)/_build/sub"; then \
|
||||||
|
file $(distdir)/_build/sub/core ; \
|
||||||
|
else \
|
||||||
|
file $(distdir)/_build/core; fi
|
||||||
|
|
||||||
show-libs:
|
show-libs:
|
||||||
@echo $(TOR_INTERNAL_LIBS)
|
@echo $(TOR_INTERNAL_LIBS)
|
||||||
|
|
||||||
|
4
changes/ticket28024
Normal file
4
changes/ticket28024
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Minor features (testing):
|
||||||
|
- Report what program produced the mysterious core file that we
|
||||||
|
occasionally see on Travis CI during make distcheck. Closes
|
||||||
|
ticket 28024.
|
Loading…
Reference in New Issue
Block a user