Skip to content

Commit

Permalink
disable failing tests with SILKWORM_SANITIZE
Browse files Browse the repository at this point in the history
  • Loading branch information
battlmonstr committed Jun 14, 2024
1 parent 27a65af commit fe9c4f5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions silkworm/core/execution/evm_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ TEST_CASE("Smart contract with storage", "[core][execution]") {
CHECK(state.get_current_storage(contract_address, key0) == new_val);
}

#if !(defined(SILKWORM_SANITIZE) && defined(__APPLE__))
TEST_CASE("Maximum call depth", "[core][execution]") {
Block block{};
block.header.number = 1'431'916;
Expand Down Expand Up @@ -317,6 +318,7 @@ TEST_CASE("Maximum call depth", "[core][execution]") {
CHECK(res.status == EVMC_INVALID_INSTRUCTION);
CHECK(res.data.empty());
}
#endif // SILKWORM_SANITIZE

TEST_CASE("DELEGATECALL", "[core][execution]") {
Block block{};
Expand Down

0 comments on commit fe9c4f5

Please sign in to comment.