From 87be6812ed0ebbca8c47f542b0dd90040b99ab4f Mon Sep 17 00:00:00 2001 From: chessai Date: Tue, 2 Jul 2024 16:07:17 -0500 Subject: [PATCH] restore other slow tests Change-Id: Iccfc9d101be551418dcba5705ab64d1951123deb --- test/SlowTests.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/SlowTests.hs b/test/SlowTests.hs index d33c0bebe2..e81ccf4645 100644 --- a/test/SlowTests.hs +++ b/test/SlowTests.hs @@ -28,7 +28,7 @@ main :: IO () main = defaultMain suite loglevel :: LogLevel -loglevel = Info --Warn +loglevel = Warn -- note that because these tests run in parallel they must all use distinct rocksdb and sqlite dirs. suite :: TestTree @@ -39,7 +39,7 @@ suite = independentSequentialTestGroup "ChainwebSlowTests" withSystemTempDirectory "compact-resume-test-pact-src" $ \srcPactDbDir -> withSystemTempDirectory "compact-resume-test-pact-target" $ \targetPactDbDir -> do Chainweb.Test.MultiNode.compactAndResumeTest loglevel (fastForkingCpmTestVersion pairChainGraph) 6 srcRocksDb targetRocksDb srcPactDbDir targetPactDbDir step - {-, testCaseSteps "compact-live-node" $ \step -> + , testCaseSteps "compact-live-node" $ \step -> withTempRocksDb "pact-import-test-rocks" $ \rdb -> withSystemTempDirectory "pact-import-test-pact-src" $ \srcPactDbDir -> withSystemTempDirectory "pact-import-test-pact-target" $ \targetPactDbDir -> do @@ -62,5 +62,5 @@ suite = independentSequentialTestGroup "ChainwebSlowTests" Chainweb.Test.MultiNode.pactImportTest loglevel (fastForkingCpmTestVersion twentyChainGraph) 1 rdb pactDbDir step , testGroup "Network.X05.SelfSigned.Test" [ Network.X509.SelfSigned.Test.tests - ]-} + ] ]