summaryrefslogtreecommitdiff
path: root/testsuite/driver
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2013-02-08 13:36:22 +0000
committerIan Lynagh <ian@well-typed.com>2013-02-08 13:36:22 +0000
commite315f36195d3c1a3003fe68e54fa769b4be15f69 (patch)
treef4392f8300dfda403c205152459534d83c4621c7 /testsuite/driver
parent6dc2bd0086534e710e1264c451201c81d4cb4314 (diff)
downloadhaskell-e315f36195d3c1a3003fe68e54fa769b4be15f69.tar.gz
Remove unused helper functions
Diffstat (limited to 'testsuite/driver')
-rw-r--r--testsuite/driver/testlib.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/testsuite/driver/testlib.py b/testsuite/driver/testlib.py
index aa601f786a..77b05ed99e 100644
--- a/testsuite/driver/testlib.py
+++ b/testsuite/driver/testlib.py
@@ -269,9 +269,6 @@ def _stats_num_field( name, opts, field, expecteds ):
(expected, dev) = expecteds
opts.stats_range_fields[field] = (expected, dev)
-def stats_range_field( field, expected, dev ):
- return stats_num_field( field, [(True, expected, dev)] )
-
def compiler_stats_num_field( field, expecteds ):
return lambda name, opts, f=field, e=expecteds: _compiler_stats_num_field(name, opts, f, e);
@@ -286,9 +283,6 @@ def _compiler_stats_num_field( name, opts, field, expecteds ):
framework_fail(name, 'numfield-no-expected', 'No expected value found for ' + field + ' in num_field check')
-def compiler_stats_range_field( field, expected, dev ):
- return compiler_stats_num_field( field, [(True, expected, dev)] )
-
# -----
def skip_if_no_ghci(name, opts):