diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2017-07-28 18:23:55 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-07-28 18:23:57 -0400 |
commit | 0e3eacc7191593ca61992b044a3875dbb50903e6 (patch) | |
tree | bc8a41b5df179e2ec34a54f9ff6dd3ac4c2af3e3 /testsuite/driver/runtests.py | |
parent | 0e3c10160472df082fd3decd98c2489a2f8e68bd (diff) | |
download | haskell-0e3eacc7191593ca61992b044a3875dbb50903e6.tar.gz |
testsuite: Don't pass allow_abbrev
This is only supported by Python 3.5 and later, which is too new for us
to rely on.
Reviewers: austin
Subscribers: rwbarton, thomie, RyanGlScott
GHC Trac Issues: #14050
Differential Revision: https://phabricator.haskell.org/D3803
Diffstat (limited to 'testsuite/driver/runtests.py')
-rw-r--r-- | testsuite/driver/runtests.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/testsuite/driver/runtests.py b/testsuite/driver/runtests.py index f0c635f214..3e03ed306c 100644 --- a/testsuite/driver/runtests.py +++ b/testsuite/driver/runtests.py @@ -42,8 +42,7 @@ def signal_handler(signal, frame): # ----------------------------------------------------------------------------- # cmd-line options -parser = argparse.ArgumentParser(description="GHC's testsuite driver", - allow_abbrev=False) +parser = argparse.ArgumentParser(description="GHC's testsuite driver") parser.add_argument("-e", action='append', help="A string to execute from the command line.") parser.add_argument("--config-file", action="append", help="config file") |