Skip to content

Commit

Permalink
Remove AM_TESTS_REDIRECT hack; use VERBOSE=1 instead.
Browse files Browse the repository at this point in the history
  • Loading branch information
cgull committed Dec 25, 2015
1 parent 2ac3bbe commit 19f214e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -27,7 +27,7 @@ before_install:
script:
- ./autogen.sh
- ./configure --enable-compile-warnings=error --enable-examples
- AM_TESTS_REDIRECT='9>&2' make distcheck 9>&2
- make distcheck VERBOSE=1

notifications:
irc: "chat.freenode.net#mosh"
6 changes: 1 addition & 5 deletions src/tests/e2e-test
Expand Up @@ -155,11 +155,7 @@ rm -rf "${test_dir}"
mkdir "${test_dir}"


if [ "x$AM_TESTS_REDIRECT" != "x" ]; then
RENDER_REDIRECT=">&9"
exec 2>&9
fi
trap 'rv=$?; if test $rv -ne 0; then dump_logs '"$test_dir $test_args $RENDER_REDIRECT"'; fi; exit $rv' EXIT
trap 'rv=$?; if test $rv -ne 0; then dump_logs '"$test_dir $test_args"'; fi; exit $rv' EXIT

# Set up tests to run.
server_tests=
Expand Down

0 comments on commit 19f214e

Please sign in to comment.