Skip to content

Commit

Permalink
add function to skip list
Browse files Browse the repository at this point in the history
  • Loading branch information
jinchengchenghh committed May 19, 2023
1 parent f87d6eb commit b1c45be
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions velox/exec/tests/SparkAggregationFuzzerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@ int main(int argc, char** argv) {
folly::init(&argc, &argv);

// TODO: List of the functions that at some point crash or fail and need to
// be fixed before we can enable.
std::unordered_set<std::string> skipFunctions = {};
// be fixed before we can enable. Constant argument of bloom_filter_agg cause
// fuzzer test fail.
std::unordered_set<std::string> skipFunctions = {"bloom_filter_agg"};

// The results of the following functions depend on the order of input
// rows. For some functions, the result can be transformed to a value that
Expand Down

0 comments on commit b1c45be

Please sign in to comment.