From b0d09b70473f6acc24698f19b447f08d962216a3 Mon Sep 17 00:00:00 2001 From: Anish Athalye Date: Wed, 6 May 2015 10:02:38 -0400 Subject: [PATCH] Make driver display file names of tests --- test/driver-lib.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }