Merge pull request #4418 from hashicorp/travis-script

Add script for running tests in Travis
pull/4420/head
James Nugent 11 years ago
commit 041c8a1ce5

@ -0,0 +1,14 @@
#!/bin/bash
# Consistent output so travis does not think we're dead during long running
# tests.
export PING_SLEEP=30
bash -c "while true; do echo \$(date) - building ...; sleep $PING_SLEEP; done" &
PING_LOOP_PID=$!
make testacc
TEST_OUTPUT=$?
kill $PING_LOOP_PID
exit $TEST_OUTPUT
Loading…
Cancel
Save