Skip to content

Commit

Permalink
Blacklist remaining failed test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-raffler committed Jan 9, 2025
1 parent 76df5f0 commit 7573c1f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/org/sosy_lab/java_smt/test/ParserSymbolsEscapedTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,14 @@ public void testEscapedParserInvalid() {
assume().that(symbol).matches("^[~!@$%^&*_\\-+=<>.?\\/0-9a-zA-Z]+$");
}
}
if (solver == Solvers.SMTINTERPOL) {
// TODO Report as a bug
assume().that(dequote(symbol)).isNoneOf("true", "false", "ꯍ");
}
if (solver == Solvers.OPENSMT) {
// TODO Report as a bug
assume().that(dequote(symbol)).isNoneOf("true", "false");
}
assertThrows(IllegalArgumentException.class, () -> parseSymbol(symbol, false));
}

Expand Down

0 comments on commit 7573c1f

Please sign in to comment.