summaryrefslogtreecommitdiff
path: root/lib/sbin/RunTest.pl
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-07-23 13:34:24 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-07-23 13:34:24 +0000
commit73051681f8d1a4877bfe14acdad8d6fc7f3fe90a (patch)
treecb3d06c1ee93545dc09f3d89ef79b479fdbc6953 /lib/sbin/RunTest.pl
parentc5c4483074e596dc0cd214dd9cbd7c60173b3701 (diff)
Parse a config file in a test directory to set a different relative or
absolute tolerance for the whole testsuite. The notation will change in the future so I don't think this feature will be documented properly yet. git-svn-id: http://svn.cactuscode.org/flesh/trunk@3349 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin/RunTest.pl')
-rw-r--r--lib/sbin/RunTest.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sbin/RunTest.pl b/lib/sbin/RunTest.pl
index 9fd9c579..54c7dfd9 100644
--- a/lib/sbin/RunTest.pl
+++ b/lib/sbin/RunTest.pl
@@ -29,7 +29,7 @@ $testdata = &InitialiseTestData();
$testdata = &FindTestParameterFiles($testdata,$config_data);
# Parse test config files
-$testdata = &ParseTestConfigs($testdata,$config_data);
+$testdata = &ParseTestConfigs($testdata,$config_data,\%runconfig);
# Find the Archive Datafiles
$testdata = &FindTestArchiveFiles($testdata);
@@ -94,6 +94,7 @@ while ($choice !~ /^Q/i)
{
$testdata = &RunTest("log",$test,$thorn,$config_data,$testdata);
}
+
$rundata = &CompareTestFiles($test,$thorn,\%runconfig,$rundata,$config_data,$testdata);
$rundata = &ReportOnTest($test,$thorn,$rundata,$testdata);