summaryrefslogtreecommitdiff
path: root/lib/sbin/RunTestUtils.pl
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2004-05-19 10:34:02 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2004-05-19 10:34:02 +0000
commitdada4b080aa3720a9864581a643b5bb8502fa941 (patch)
tree934c496648f35052361a8829bcab7b9136ca3d28 /lib/sbin/RunTestUtils.pl
parent88bd58c546d70805d02a43d51a1640fb398aa5be (diff)
Finish error message about missing executable with a newline character
so that the perl script stops correctly. git-svn-id: http://svn.cactuscode.org/flesh/trunk@3743 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin/RunTestUtils.pl')
-rw-r--r--lib/sbin/RunTestUtils.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sbin/RunTestUtils.pl b/lib/sbin/RunTestUtils.pl
index af51f9bb..19c26656 100644
--- a/lib/sbin/RunTestUtils.pl
+++ b/lib/sbin/RunTestUtils.pl
@@ -312,7 +312,7 @@ sub FindExecutionDetails
}
else
{
- die "Cannot locate $executable";
+ die "Cannot locate executable '$executable'\n";
}
}
@@ -860,7 +860,7 @@ sub RunTest
# Run the test from the test thorn directory
chdir ($testdata->{"$thorn $test TESTRUNDIR"}) ;
-
+
$cmd = "$config_data->{\"COMMAND\"} $config_data->{\"EXE\"} $parfile";
$retcode = &RunCactus($output,$test,$cmd);
chdir $config_data->{"CCTK_DIR"};