Skip to content

Commit

Permalink
Merge pull request #315 from ethereum/disable-word-simplification
Browse files Browse the repository at this point in the history
Ignore word-simplification test
  • Loading branch information
arcz authored Jul 13, 2023
2 parents a6697eb + 92ab2c7 commit 04943e4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/test.hs
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,10 @@ tests = testGroup "hevm"
, testProperty "byte-simplification" $ \(expr :: Expr Byte) -> ioProperty $ do
let simplified = Expr.simplify expr
checkEquiv expr simplified
, testProperty "word-simplification" $ \(ZeroDepthWord expr) -> ioProperty $ do
let simplified = Expr.simplify expr
checkEquiv expr simplified
-- https://github.com/ethereum/hevm/issues/311
, ignoreTest $ testProperty "word-simplification" $ \(ZeroDepthWord expr) -> ioProperty $ do
let simplified = Expr.simplify expr
checkEquiv expr simplified
, testProperty "readStorage-equivalance" $ \(store, addr, slot) -> ioProperty $ do
let simplified = Expr.readStorage' addr slot store
full = SLoad addr slot store
Expand Down

0 comments on commit 04943e4

Please sign in to comment.