summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorrhaas <rhaas@17b73243-c579-4c4c-a9d2-2d5706c11dac>2012-09-14 18:21:41 +0000
committerrhaas <rhaas@17b73243-c579-4c4c-a9d2-2d5706c11dac>2012-09-14 18:21:41 +0000
commit1565ba49007b6a9a443da4e293843deae217f311 (patch)
tree58696871b8103446e90b89917aabe77f152973d0 /lib
parent72c5afaaf65add93d80ed447c1be1c96839246d4 (diff)
increase default value of RELTOL to 1e-12
this makes the test system less prone to false alarms when quantities larger than of order unity are involved git-svn-id: http://svn.cactuscode.org/flesh/trunk@4871 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib')
-rw-r--r--lib/sbin/RunTestUtils.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sbin/RunTestUtils.pl b/lib/sbin/RunTestUtils.pl
index 3174db31..736ab935 100644
--- a/lib/sbin/RunTestUtils.pl
+++ b/lib/sbin/RunTestUtils.pl
@@ -585,7 +585,7 @@ sub InitialiseRunData
my(%runconfig);
$runconfig{"ABSTOL"} = 1e-12;
- $runconfig{"RELTOL"} = 0;
+ $runconfig{"RELTOL"} = 1e-12;
return %runconfig;
}