Skip to content

Commit

Permalink
remove eof tests that fail only because of fork
Browse files Browse the repository at this point in the history
Signed-off-by: Danno Ferrin <danno@numisight.com>
  • Loading branch information
shemnon committed Oct 3, 2024
1 parent af7c0b5 commit dbc1e2f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class EOFReferenceTestTools {

static {
final String eips =
System.getProperty("test.ethereum.eof.eips", "Prague,Osaka,Amsterdam,Bogota,Polis,Bangkok");
System.getProperty("test.ethereum.eof.eips", "Osaka,Amsterdam,Bogota,Polis,Bangkok");
EIPS_TO_RUN = Arrays.asList(eips.split(","));
}

Expand Down Expand Up @@ -81,6 +81,10 @@ public class EOFReferenceTestTools {
if (EIPS_TO_RUN.isEmpty()) {
params.ignoreAll();
}

// EOF was moved from Prague to Osaka
params.ignore("-Prague\\[");

}

private EOFReferenceTestTools() {
Expand Down

0 comments on commit dbc1e2f

Please sign in to comment.