From 96468df264558fabb02d8ef261e0cb50afbf8ee4 Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Mon, 5 Feb 2024 21:55:33 +0000 Subject: [PATCH] Skip lifting tests on WASM --- tests/Lift.hs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/Lift.hs b/tests/Lift.hs index 76816f6e0..68abdc6a9 100644 --- a/tests/Lift.hs +++ b/tests/Lift.hs @@ -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" $ @@ -60,3 +63,4 @@ testSuite = testGroup "Lift" #endif ] ] +#endif