Repository : ssh://darcs.haskell.org//srv/darcs/testsuite On branch : master
http://hackage.haskell.org/trac/ghc/changeset/1e4004e643ef8bbfdb98248f6ce51e718b6dac9e >--------------------------------------------------------------- commit 1e4004e643ef8bbfdb98248f6ce51e718b6dac9e Author: Manuel M T Chakravarty <[email protected]> Date: Fri Aug 5 11:45:03 2011 +1000 Disable outofmem for OS X * Setting a ulimit -v or -m seems to have no effect on OS X * At least on 64bit systems, it is a pain to have the test eat up all virtual memory before being terminated by the OS >--------------------------------------------------------------- tests/rts/all.T | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/tests/rts/all.T b/tests/rts/all.T index 389df04..06bb374 100644 --- a/tests/rts/all.T +++ b/tests/rts/all.T @@ -35,7 +35,8 @@ test('divbyzero', if_platform('i386-unknown-mingw32', exit_code(1))]), compile_and_run, ['']) -test('outofmem', normal, run_command, ['$MAKE -s --no-print-directory outofmem']) +test('outofmem', if_os('darwin', skip), + run_command, ['$MAKE -s --no-print-directory outofmem']) test('outofmem2', extra_run_opts('+RTS -M5m -RTS'), run_command, ['$MAKE -s --no-print-directory outofmem2']) _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
