summaryrefslogtreecommitdiff
path: root/testsuite/mk
diff options
context:
space:
mode:
authorJared Weakly <jweakly@pdx.edu>2017-07-27 14:33:16 -0400
committerBen Gamari <ben@smart-cactus.org>2017-07-28 12:36:40 -0400
commit5e940bd3d554729ce650008a72b4f82a78578a7b (patch)
tree2ce1d256c663ff386d5c87f06ee2847bc80765be /testsuite/mk
parent424ecadbb3d06f4d4e0813de670369893e1da2a9 (diff)
downloadhaskell-5e940bd3d554729ce650008a72b4f82a78578a7b.tar.gz
Switched out optparse for argparse in runtests.py
Tangentially related to my prior work on trac ticket #12758. Signed-off-by: Jared Weakly <jweakly@pdx.edu> Reviewers: austin, bgamari Subscribers: rwbarton, thomie Differential Revision: https://phabricator.haskell.org/D3792
Diffstat (limited to 'testsuite/mk')
-rw-r--r--testsuite/mk/test.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/mk/test.mk b/testsuite/mk/test.mk
index a44e200d49..6c3963679d 100644
--- a/testsuite/mk/test.mk
+++ b/testsuite/mk/test.mk
@@ -73,7 +73,7 @@ else
dllext = .so
endif
-RUNTEST_OPTS += -e ghc_compiler_always_flags="'$(TEST_HC_OPTS)'"
+RUNTEST_OPTS += -e "ghc_compiler_always_flags='$(TEST_HC_OPTS)'"
RUNTEST_OPTS += -e config.compiler_debugged=$(GhcDebugged)
@@ -214,7 +214,7 @@ endif
RUNTEST_OPTS += \
--rootdir=. \
- --configfile=$(CONFIG) \
+ --config-file=$(CONFIG) \
-e 'config.confdir="$(CONFIGDIR)"' \
-e 'config.platform="$(TARGETPLATFORM)"' \
-e 'config.os="$(TargetOS_CPP)"' \
@@ -252,7 +252,7 @@ RUNTEST_OPTS += \
endif
ifeq "$(NO_PRINT_SUMMARY)" "YES"
RUNTEST_OPTS += \
- --no-print-summary 1
+ --no-print-summary
endif
RUNTEST_OPTS += \