[commit: testsuite] master: Fix test T5373 for +RTS/rtsopts changes (a52f72c)
Duncan Coutts
duncan.coutts at googlemail.com
Fri Oct 28 14:22:20 CEST 2011
Repository : ssh://darcs.haskell.org//srv/darcs/testsuite
On branch : master
http://hackage.haskell.org/trac/ghc/changeset/a52f72cae740e7cf6c5e1670c62d29ce6cb673b1
>---------------------------------------------------------------
commit a52f72cae740e7cf6c5e1670c62d29ce6cb673b1
Author: Duncan Coutts <duncan at well-typed.com>
Date: Fri Oct 28 12:30:36 2011 +0100
Fix test T5373 for +RTS/rtsopts changes
The test previously used +RTS -? as an example flag that is banned in
the -rtsopts=some mode. That flag is now allowed, so we pick -c instead.
>---------------------------------------------------------------
tests/dynlibs/Makefile | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/dynlibs/Makefile b/tests/dynlibs/Makefile
index 9f6469b..d83ca21 100644
--- a/tests/dynlibs/Makefile
+++ b/tests/dynlibs/Makefile
@@ -36,8 +36,8 @@ T5373:
'$(TEST_HC)' $(TEST_HC_OPTS) -v0 -dynamic --make T5373B -rtsopts
'$(TEST_HC)' $(TEST_HC_OPTS) -v0 -dynamic --make T5373C -rtsopts=some
'$(TEST_HC)' $(TEST_HC_OPTS) -v0 -dynamic --make T5373D -rtsopts=none
- -./T5373A +RTS -\? 2>&1 | grep disabled
- -./T5373B +RTS -\? 2>&1 | grep disabled
- -./T5373C +RTS -\? 2>&1 | grep disabled
- -./T5373D +RTS -\? 2>&1 | grep disabled
+ -./T5373A +RTS -c 2>&1 | grep disabled
+ -./T5373B +RTS -c 2>&1 | grep disabled
+ -./T5373C +RTS -c 2>&1 | grep disabled
+ -./T5373D +RTS -c 2>&1 | grep disabled
More information about the Cvs-ghc
mailing list