Skip to content

Commit 8133b35

Browse files
bekadavis9ihnorton
authored andcommitted
Remove test case that's failing in ASAN nightly.
1 parent abca93c commit 8133b35

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

tiledb/api/c_api/subarray/test/unit_capi_subarray.cc

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,11 @@ TEST_CASE(
191191
tiledb_subarray_add_point_ranges(x.ctx(), x.subarray, 0, ranges_inv, 2);
192192
REQUIRE(tiledb_status(rc) == TILEDB_ERR);
193193
}
194-
SECTION("invalid count") {
195-
rc = tiledb_subarray_add_point_ranges(x.ctx(), x.subarray, 0, ranges, 20);
196-
REQUIRE(tiledb_status(rc) == TILEDB_ERR);
197-
}
194+
/**
195+
* No "invalid count" section here;
196+
* There is no way to programmatically (in)validate the count. An invalid
197+
* value will result in a segfault from an OOB memcpy.
198+
*/
198199
}
199200

200201
TEST_CASE(

0 commit comments

Comments
 (0)