summaryrefslogtreecommitdiff
path: root/tests/defaults/e_script
diff options
context:
space:
mode:
Diffstat (limited to 'tests/defaults/e_script')
-rw-r--r--tests/defaults/e_script4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/defaults/e_script b/tests/defaults/e_script
index b9150ba7..8c9cfb6a 100644
--- a/tests/defaults/e_script
+++ b/tests/defaults/e_script
@@ -37,10 +37,10 @@ status=$?
rm -f $test_name.failed $test_name.ok
if [ "$status" = 0 ] ; then
- echo "ok"
+ echo "$test_name: $test_description: ok"
touch $test_name.ok
else
- echo "failed"
+ echo "$test_name: $test_description: failed"
diff $DIFF_OPTS $EXPECT $OUT > $test_name.failed
fi