Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge with upstream master.
  • Loading branch information
lyndonhenry committed Nov 28, 2016
2 parents ed55971 + cfd95de commit d9eec18
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .travis/after_failure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
# allowing us to debug the problem. #
#=========================================================================#

set -e
set -u

pwd
ls

Expand All @@ -27,6 +24,7 @@ for FI in */; do
ls $FI
done


TEST_ROOT=`find . -type d -name "testsuite.dir" | head -1`
RELEVANT_EXTENSIONS=".out .err .log"
MAXIMUM_LINES="200"
Expand All @@ -39,6 +37,14 @@ pretty_print () {
echo $(tput sgr0)
}

# print some helpful stats
pretty_print "Showing git info"
git tag
git remote -v
git describe --tags --abbrev=0 --always
git describe --all --abbrev=0 --always
git describe --tags --abbrev=0

# Find the test case that we will be displaying
CANDIDATE=`ls $TEST_ROOT | head -1`
pretty_print "Displaying contents of failed test-case no. $CANDIDATE from $TEST_ROOT"
Expand Down
3 changes: 3 additions & 0 deletions .travis/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
set -e
set -x

echo -n "Version: "
git describe --tags --abbrev=0 --always

# create configure files
./bootstrap

Expand Down

0 comments on commit d9eec18

Please sign in to comment.