summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authoradelon <22380201+adelon@users.noreply.github.com>2026-05-18 02:07:26 +0200
committeradelon <22380201+adelon@users.noreply.github.com>2026-05-18 02:07:26 +0200
commitca2df6248ed62629b688bb677009d79ae9b51fbc (patch)
treee948343b7e8ea7a099ac227b5f5ae2f358832634 /testsuite
parent93e64faa49931bb8beb2e577f79f103084d34ed1 (diff)
Remove cache (no clear benefit)
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/pmcfg/run.hs5
1 files changed, 1 insertions, 4 deletions
diff --git a/testsuite/pmcfg/run.hs b/testsuite/pmcfg/run.hs
index 5ad5b5071..b40e21f6c 100644
--- a/testsuite/pmcfg/run.hs
+++ b/testsuite/pmcfg/run.hs
@@ -71,15 +71,12 @@ compareSchema :: TestSchema -> Either String ()
compareSchema schema =
let pre = getFIdsPre schema
optimized = getFIdsOptimized schema
- (cached1,cached2) = getFIdsOptimizedCached schema
- in if pre == optimized && pre == cached1 && pre == cached2
+ in if pre == optimized
then Right ()
else Left $
unlines [ "schema: " ++ show schema
, "pre: " ++ show pre
, "optimized: " ++ show optimized
- , "cached #1: " ++ show cached1
- , "cached #2: " ++ show cached2
]
singletonTests :: [Test]