Skip to content

Commit 9e5324a

Browse files
Michael FeroMichael Penick
authored andcommitted
test: Ensuring NoCompactEnabledConnection is properly skipped
This test cannot be validated with DSE >= 6.0.0.
1 parent a8160c0 commit 9e5324a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

cpp-driver/gtests/src/integration/tests/test_basics.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,11 @@ CASSANDRA_INTEGRATION_TEST_F(BasicsTests, NoCompactEnabledConnection) {
340340
CHECK_VERSION(3.11.2);
341341
CCM::CassVersion cass_version = server_version_;
342342
if (Options::is_dse()) {
343+
if (server_version_ >= "6.0.0") {
344+
SKIP_TEST("Unsupported for DataStax Enterprise Version " << server_version_.to_string()
345+
<< ": Apache Cassandra server version must be used and less than"
346+
<< " v4.0.0 and either 3.0.16+ or 3.11.2+ in order to execute");
347+
}
343348
cass_version = static_cast<CCM::DseVersion>(cass_version).get_cass_version();
344349
}
345350
if (cass_version >= "4.0.0") {

0 commit comments

Comments
 (0)