diff options
-rw-r--r-- | testsuite/tests/primops/should_run/T23071.hs | 5 | ||||
-rw-r--r-- | testsuite/tests/primops/should_run/all.T | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/tests/primops/should_run/T23071.hs b/testsuite/tests/primops/should_run/T23071.hs new file mode 100644 index 0000000000..e28a3b884a --- /dev/null +++ b/testsuite/tests/primops/should_run/T23071.hs @@ -0,0 +1,5 @@ +import Control.Monad +import GHC.Conc.Sync + +main = replicateM_ 1000000 $ listThreads >>= print + diff --git a/testsuite/tests/primops/should_run/all.T b/testsuite/tests/primops/should_run/all.T index f513d15a2e..4148546280 100644 --- a/testsuite/tests/primops/should_run/all.T +++ b/testsuite/tests/primops/should_run/all.T @@ -60,3 +60,4 @@ test('UnliftedTVar2', normal, compile_and_run, ['']) test('UnliftedWeakPtr', normal, compile_and_run, ['']) test('T21624', normal, compile_and_run, ['']) +test('T23071', ignore_stdout, compile_and_run, ['']) |