Skip to content

Commit

Permalink
Rapidcheck ignore 'Cannot allocate space for preprocess'
Browse files Browse the repository at this point in the history
  • Loading branch information
rroelke authored and github-actions committed Feb 10, 2025
1 parent eaa0650 commit a0da024
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/src/unit-sparse-global-order-reader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2993,6 +2993,14 @@ void CSparseGlobalOrderFx::run_execute(Instance& instance) {
return;
}
if constexpr (std::is_same_v<Asserter, AsserterRapidcheck>) {
if (err.find(
"Cannot allocate space for preprocess result tile ID list")) {
// not enough memory to determine tile order
// we can probably make some assertions about what this should have
// looked like but for now we'll let it go
tiledb_query_free(&query);
return;
}
if (err.find("Cannot load tile offsets") != std::string::npos) {
// not enough memory budget for tile offsets, don't bother asserting
// about it (for now?)
Expand Down

0 comments on commit a0da024

Please sign in to comment.