Skip to content

Commit 5c3e0db

Browse files
committed
OpenSMT: exclude systems with older GLIBC from tests.
1 parent de27413 commit 5c3e0db

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,13 @@ private void requireSupportedOperatingSystem() {
9494
case BOOLECTOR:
9595
case CVC4:
9696
case CVC5:
97-
case OPENSMT:
9897
case YICES2:
9998
assume.that(IS_LINUX).isTrue();
10099
return;
100+
case OPENSMT:
101+
assume.that(IS_LINUX).isTrue();
102+
assume.that(isSufficientVersionOfLibcxx("opensmtjava")).isTrue();
103+
return;
101104
case BITWUZLA:
102105
assume.that(IS_LINUX).isTrue();
103106
assume.that(isSufficientVersionOfLibcxx("bitwuzlaj")).isTrue();

0 commit comments

Comments
 (0)