summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAnish Athalye <me@anishathalye.com>2015-05-06 10:02:38 -0400
committerAnish Athalye <me@anishathalye.com>2015-05-06 10:04:32 -0400
commitb0d09b70473f6acc24698f19b447f08d962216a3 (patch)
tree2c2e94c866ec47d27555bfe4ab43eea3c240d690 /test
parentb1f9251e1ff5add8040e81ed569308e884150dea (diff)
Make driver display file names of tests
Diffstat (limited to 'test')
-rw-r--r--test/driver-lib.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/driver-lib.bash b/test/driver-lib.bash
index 82766b9..d43c665 100644
--- a/test/driver-lib.bash
+++ b/test/driver-lib.bash
@@ -88,7 +88,7 @@ fail() {
run_test() {
tests_run=$((tests_run + 1))
- printf '[%d/%d]\n' ${tests_run} ${tests_total}
+ printf '[%d/%d] (%s)\n' ${tests_run} ${tests_total} ${1}
rollback || die "unable to rollback vm." # start with a clean slate
vagrant ssh -c "cd /dotbot/test/tests && bash ${1}" 2>/dev/null && pass || fail
}