diff options
author | Simon Marlow <simonmar@microsoft.com> | 2008-01-22 16:05:20 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2008-01-22 16:05:20 +0000 |
commit | 0e746bc39042e543e686020d89464d1f2b62f271 (patch) | |
tree | 64af7f121a90d67b1ae0bad8af5dc22a872e84f1 /testsuite/driver/testutil.py | |
parent | 630fabfafab227ef8e675f7d7ebb65819254653d (diff) | |
download | haskell-0e746bc39042e543e686020d89464d1f2b62f271.tar.gz |
allow extra normalisation to be applied to the output on a per-test basis
Diffstat (limited to 'testsuite/driver/testutil.py')
-rw-r--r-- | testsuite/driver/testutil.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testsuite/driver/testutil.py b/testsuite/driver/testutil.py index a0f1dc4362..0738683111 100644 --- a/testsuite/driver/testutil.py +++ b/testsuite/driver/testutil.py @@ -1,6 +1,9 @@ # ----------------------------------------------------------------------------- # Utils +def id(a): + return a + def eq(x): return lambda y,z=x: y == z |