Repository : ssh://darcs.haskell.org//srv/darcs/testsuite On branch : master
http://hackage.haskell.org/trac/ghc/changeset/67266eb4c11dc46ff37790f0e95db7bda921870c >--------------------------------------------------------------- commit 67266eb4c11dc46ff37790f0e95db7bda921870c Author: Simon Marlow <[email protected]> Date: Wed Jul 20 09:44:44 2011 +0100 fix 5313(threaded2) >--------------------------------------------------------------- tests/ghc-regress/driver/all.T | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/ghc-regress/driver/all.T b/tests/ghc-regress/driver/all.T index 2c8d4d9..130bf3b 100644 --- a/tests/ghc-regress/driver/all.T +++ b/tests/ghc-regress/driver/all.T @@ -304,7 +304,7 @@ test('dynHelloWorld', # simple test that we can load and use the GHC package in all ways # (in #5313 it was failing the dyn way) p = subprocess.Popen([config.compiler, "--print-libdir"], stdout=subprocess.PIPE) -libdir = p.stdout.read() +libdir = chop(p.stdout.read()) p.stdout.close test('5313', extra_run_opts(libdir), compile_and_run, ['-package ghc']) _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
