Repository : ssh://darcs.haskell.org//srv/darcs/testsuite On branch : master
http://hackage.haskell.org/trac/ghc/changeset/f6f20381c8064f7f98f9b9ab082e5ad65c132be9 >--------------------------------------------------------------- commit f6f20381c8064f7f98f9b9ab082e5ad65c132be9 Author: Ian Lynagh <[email protected]> Date: Sun Nov 27 16:36:55 2011 +0000 Expect 3307 and environment001 to fail on msys; fixes trac #5599 Unicode support on MSYS seems to be broken. >--------------------------------------------------------------- tests/lib/IO/all.T | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/lib/IO/all.T b/tests/lib/IO/all.T index 4bb14e6..60457b8 100644 --- a/tests/lib/IO/all.T +++ b/tests/lib/IO/all.T @@ -119,7 +119,8 @@ test('concio002', reqlib('process'), compile_and_run, ['']) test('2122', extra_clean(['2122-test']), compile_and_run, ['']) test('3307', - [extra_clean(['chinese-file-å°è¯´', 'chinese-name'])], + [if_msys(expect_fail), # See trac #5599 + extra_clean(['chinese-file-å°è¯´', 'chinese-name'])], run_command, ['$MAKE -s --no-print-directory 3307-test']) test('4855', normal, compile_and_run, ['']) @@ -142,7 +143,11 @@ test('encoding001', test('encoding002', normal, compile_and_run, ['']) -test('environment001', extra_clean(['environment001']), run_command, ['$MAKE -s --no-print-directory environment001-test']) +test('environment001', + [if_msys(expect_fail), # See trac #5599 + extra_clean(['environment001'])], + run_command, + ['$MAKE -s --no-print-directory environment001-test']) test('newline001', extra_clean(['newline001.out']), compile_and_run, [''])
_______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
