From 2b5c56b4c427b0b0be7c970c86cf62b85106251f Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sun, 24 Jul 2016 21:45:25 +0200 Subject: [PATCH] tesh: display the full path to tesh file to simplify edits --- tools/tesh/tesh.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/tesh/tesh.pl b/tools/tesh/tesh.pl index 6867c3a232..34f17ff8af 100755 --- a/tools/tesh/tesh.pl +++ b/tools/tesh/tesh.pl @@ -326,7 +326,9 @@ if ($diff_tool) { } if ( $tesh_file =~ m/(.*)\.tesh/ ) { - print "Test suite `$tesh_file'\n"; + my $dir = qx,pwd,; + chomp($dir); + print "Test suite '$dir/$tesh_file'\n"; } else { $tesh_name = "(stdin)"; print "Test suite from stdin\n"; -- 2.20.1