diff options
author | Ian Lynagh <igloo@earth.li> | 2011-11-27 16:36:55 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-11-27 16:36:55 +0000 |
commit | 9a1b288c8e2714a919aacd490bf06c48cfb30f93 (patch) | |
tree | fa17b94b46c8f8fd3bbc699516fc1b711d2e0fe0 /testsuite/tests/lib | |
parent | 0310bd117ec471de234ca39518c1e29a4633f430 (diff) | |
download | haskell-9a1b288c8e2714a919aacd490bf06c48cfb30f93.tar.gz |
Expect 3307 and environment001 to fail on msys; fixes trac #5599
Unicode support on MSYS seems to be broken.
Diffstat (limited to 'testsuite/tests/lib')
-rw-r--r-- | testsuite/tests/lib/IO/all.T | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/testsuite/tests/lib/IO/all.T b/testsuite/tests/lib/IO/all.T index 4bb14e689f..60457b8a88 100644 --- a/testsuite/tests/lib/IO/all.T +++ b/testsuite/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, ['']) |