[commit: ghc] master: Fix T8526 on Windows (0da3ef2)

git at git.haskell.org git at git.haskell.org
Tue Jan 14 09:47:09 UTC 2014


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/0da3ef2d1c16273bb47e442ecadda23dfe03e7e9/ghc

>---------------------------------------------------------------

commit 0da3ef2d1c16273bb47e442ecadda23dfe03e7e9
Author: Austin Seipp <austin at well-typed.com>
Date:   Mon Jan 13 12:02:32 2014 -0600

    Fix T8526 on Windows
    
    The shell interpretes the quotes incorrectly.
    
    Signed-off-by: Austin Seipp <austin at well-typed.com>


>---------------------------------------------------------------

0da3ef2d1c16273bb47e442ecadda23dfe03e7e9
 testsuite/tests/driver/T8526/T8526.script |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/testsuite/tests/driver/T8526/T8526.script b/testsuite/tests/driver/T8526/T8526.script
index 4c9fce5..d4a2434 100644
--- a/testsuite/tests/driver/T8526/T8526.script
+++ b/testsuite/tests/driver/T8526/T8526.script
@@ -1,10 +1,10 @@
 :set -fforce-recomp
 :set -v1
 
-:! echo 'a = True' > A.inc
+:! echo a = True > A.inc
 :load A
 a
 
-:! echo 'a = False' > A.inc
+:! echo a = False > A.inc
 :reload
 a



More information about the ghc-commits mailing list