summaryrefslogtreecommitdiff
path: root/testsuite/driver/testutil.py
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2007-02-06 01:22:12 +0000
committerIan Lynagh <igloo@earth.li>2007-02-06 01:22:12 +0000
commit4d12bf8a4cf939b77be501df5f81814865948a48 (patch)
tree876adcb623efe22fdf9ece1236678bdaa6baeebe /testsuite/driver/testutil.py
parent568e6ebbc092387bab7e38d2ddffdc0b04790778 (diff)
downloadhaskell-4d12bf8a4cf939b77be501df5f81814865948a48.tar.gz
Option to skip ways when running the testsuite
Diffstat (limited to 'testsuite/driver/testutil.py')
-rw-r--r--testsuite/driver/testutil.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/testsuite/driver/testutil.py b/testsuite/driver/testutil.py
index a8f993c98f..938ded82c8 100644
--- a/testsuite/driver/testutil.py
+++ b/testsuite/driver/testutil.py
@@ -4,6 +4,9 @@
def eq(x):
return lambda y,z=x: y == z
+def neq(x):
+ return lambda y,z=x: y != z
+
def append(x,y):
return x + y