aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Eval.hs
diff options
context:
space:
mode:
authorMarvin Borner2024-02-24 18:40:54 +0100
committerMarvin Borner2024-02-24 18:40:54 +0100
commit02d531a2dff18aed6ec8085c10113ac0a46b05b9 (patch)
treedb7af5225a9c67ee1ada684de57dab71332d8c3a /src/Eval.hs
parent1f78034588a4f545fce3dcd5070b45c60d3f0bdd (diff)
Added reducer selection flag
Diffstat (limited to 'src/Eval.hs')
-rw-r--r--src/Eval.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Eval.hs b/src/Eval.hs
index 097613f..cc7fdfa 100644
--- a/src/Eval.hs
+++ b/src/Eval.hs
@@ -277,8 +277,8 @@ evalCommand inp s@(EnvState env@(Environment envDefs) conf cache) = \case
print (ContextualError err $ Context inp $ _nicePath conf)
>> pure s
Right (Test e1' e2') -> do
- lhs <- reduce e1'
- rhs <- reduce e2'
+ lhs <- reduce conf e1'
+ rhs <- reduce conf e2'
when (lhs /= rhs) (print $ FailedTest e1 e2 lhs rhs) >> pure s
_ -> pure s
| otherwise