Skip to content

Commit

Permalink
Test suite: avoid forkOS on WASM
Browse files Browse the repository at this point in the history
  • Loading branch information
Bodigrim authored and erikd committed Nov 26, 2024
1 parent 2ea4e62 commit 523bdc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/suite/Data/HashTable/Test/Common.hs
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ data Action = Lookup Int


timeout_ :: Int -> IO a -> IO ()
#ifdef PORTABLE
#if defined(PORTABLE) || defined(wasm32_HOST_ARCH)
timeout_ t m = timeout t m >>= maybe (assertFailure "timeout")
(const $ return ())
#else
Expand Down

0 comments on commit 523bdc3

Please sign in to comment.