Skip to content

Commit

Permalink
Remove test case that's failing in ASAN nightly.
Browse files Browse the repository at this point in the history
  • Loading branch information
bekadavis9 committed Nov 13, 2024
1 parent abca93c commit 27a32e5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tiledb/api/c_api/subarray/test/unit_capi_subarray.cc
Original file line number Diff line number Diff line change
Expand Up @@ -191,10 +191,11 @@ TEST_CASE(
tiledb_subarray_add_point_ranges(x.ctx(), x.subarray, 0, ranges_inv, 2);
REQUIRE(tiledb_status(rc) == TILEDB_ERR);
}
SECTION("invalid count") {
rc = tiledb_subarray_add_point_ranges(x.ctx(), x.subarray, 0, ranges, 20);
REQUIRE(tiledb_status(rc) == TILEDB_ERR);
}
/**
* No "invalid count" section here;
* There is no way to programmatically (in)validate the count. An invalid
* value will result in a segfault from an OOB memcpy.
*/
}

TEST_CASE(
Expand Down

0 comments on commit 27a32e5

Please sign in to comment.