diff options
Diffstat (limited to 'testsuite/tests/profiling/should_run/T3001.hs')
-rw-r--r-- | testsuite/tests/profiling/should_run/T3001.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/tests/profiling/should_run/T3001.hs b/testsuite/tests/profiling/should_run/T3001.hs new file mode 100644 index 0000000000..f7828c0283 --- /dev/null +++ b/testsuite/tests/profiling/should_run/T3001.hs @@ -0,0 +1,8 @@ + +-- This caused 6.10.1 to segfault when run with +RTS -hb +-- trac #3001 + +module Main (main) where + +main :: IO () +main = print $ replicate 40000 'x' |