File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -150,9 +150,10 @@ tests = testGroup "hevm"
150150 , testProperty " byte-simplification" $ \ (expr :: Expr Byte ) -> ioProperty $ do
151151 let simplified = Expr. simplify expr
152152 checkEquiv expr simplified
153- , testProperty " word-simplification" $ \ (ZeroDepthWord expr) -> ioProperty $ do
154- let simplified = Expr. simplify expr
155- checkEquiv expr simplified
153+ -- https://github.com/ethereum/hevm/issues/311
154+ , ignoreTest $ testProperty " word-simplification" $ \ (ZeroDepthWord expr) -> ioProperty $ do
155+ let simplified = Expr. simplify expr
156+ checkEquiv expr simplified
156157 , testProperty " readStorage-equivalance" $ \ (store, addr, slot) -> ioProperty $ do
157158 let simplified = Expr. readStorage' addr slot store
158159 full = SLoad addr slot store
You can’t perform that action at this time.
0 commit comments