Skip to content

Commit 2265152

Browse files
Strings: Disable non-BMP test for CVC5 due to a bug in the solver
1 parent c5e81ac commit 2265152

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/sosy_lab/java_smt/test/StringFormulaManagerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public void testOutputUnescape() throws SolverException, InterruptedException {
148148
.isEqualTo("\\u{39E}");
149149

150150
// Test with a character that is not in the BMP
151-
if (solver != Solvers.PRINCESS) {
151+
if (solver != Solvers.PRINCESS && solver != Solvers.CVC5) {
152152
String str = Character.toString(0x200cb);
153153
assertThat(model.evaluate(smgr.makeString(str))).isEqualTo(str);
154154
}

0 commit comments

Comments
 (0)