diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/RunTests.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/RunTests.hs b/tests/RunTests.hs index 6dc0d6e18..e57d8ddd9 100644 --- a/tests/RunTests.hs +++ b/tests/RunTests.hs @@ -153,7 +153,8 @@ runTest testname opts inp norm = do let normPath = norm hFlush stdout -- Note: COLUMNS must be set for markdown table reader - ph <- runProcess pandocPath (opts ++ [inpPath] ++ ["--data-dir", ".."]) Nothing (Just [("COLUMNS", "80")]) Nothing (Just hOut) (Just stderr) + -- and we need LANG set for ghc 6.12 + ph <- runProcess pandocPath (opts ++ [inpPath] ++ ["--data-dir", ".."]) Nothing (Just [("COLUMNS", "80"),("LANG","en_US.UTF-8")]) Nothing (Just hOut) (Just stderr) ec <- waitForProcess ph result <- if ec == ExitSuccess then do |