Skip to content

Commit

Permalink
Skip lifting tests on WASM
Browse files Browse the repository at this point in the history
  • Loading branch information
Bodigrim committed Feb 5, 2024
1 parent cf5161d commit 96468df
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/Lift.hs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ import qualified Data.ByteString.Short as SBS
import qualified Language.Haskell.TH.Syntax as TH

testSuite :: TestTree
#ifdef wasm32_HOST_ARCH
testSuite = testGroup "Skipped, requires -fexternal-interpreter"
#else
testSuite = testGroup "Lift"
[ testGroup "strict"
[ testProperty "normal" $
Expand Down Expand Up @@ -60,3 +63,4 @@ testSuite = testGroup "Lift"
#endif
]
]
#endif

0 comments on commit 96468df

Please sign in to comment.