diff options
Diffstat (limited to 'testsuite/driver/testglobals.py')
-rw-r--r-- | testsuite/driver/testglobals.py | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/testsuite/driver/testglobals.py b/testsuite/driver/testglobals.py index 423925e87e..0e0240db8e 100644 --- a/testsuite/driver/testglobals.py +++ b/testsuite/driver/testglobals.py @@ -235,17 +235,11 @@ class TestOptions: # extra files to copy to the testdir self.extra_files = [] - # Map from metric to (fuction from way to baseline value, allowed percentage deviation) e.g. - # { 'bytes allocated': ( - # lambda way: if way1: return None ... elif way2:return 9300000000 ..., - # 10) } - # This means no baseline is available for way1. For way 2, allow a 10% - # deviation from 9300000000. + # Map from metric to expectected value and allowed percentage deviation. e.g. + # { 'bytes allocated': (9300000000, 10) } + # To allow a 10% deviation from 9300000000 for the 'bytes allocated' metric. self.stats_range_fields = {} - # Is the test testing performance? - self.is_stats_test = False - # Does this test the compiler's performance as opposed to the generated code. self.is_compiler_stats_test = False |