Repository : ssh://darcs.haskell.org//srv/darcs/testsuite On branch : master
http://hackage.haskell.org/trac/ghc/changeset/17d7c5d988f740fb111afdb2f7fe1303cbcd088d >--------------------------------------------------------------- commit 17d7c5d988f740fb111afdb2f7fe1303cbcd088d Author: Simon Marlow <[email protected]> Date: Thu Dec 1 11:27:07 2011 +0000 skip posix003 on Windows >--------------------------------------------------------------- tests/lib/libposix/all.T | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/tests/lib/libposix/all.T b/tests/lib/libposix/all.T index 0e95e56..9c783ac 100644 --- a/tests/lib/libposix/all.T +++ b/tests/lib/libposix/all.T @@ -1,7 +1,8 @@ test('posix002', [ reqlib('unix'), omit_ways(prof_ways) ], compile_and_run, ['']) -test('posix003', normal, compile_and_run, ['']) +# Skip on mingw32: assumes existence of 'pwd' and /tmp +test('posix003', if_os('mingw32', skip), compile_and_run, ['']) # Uses forkProcess; doesn't work with threaded2 test('posix004', [ reqlib('unix'), expect_fail_for(['threaded2']) ], _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
