Skip to content

Commit

Permalink
fix(fuzzer): Stabalize expression fuzzer for nightly run by removing …
Browse files Browse the repository at this point in the history
…known test failures

Summary: Removes functions already noted as test failures that crash fuzzer run in order to stabalize fuzzer for nightly QA run

Differential Revision: D69337160
  • Loading branch information
peterenescu authored and facebook-github-bot committed Feb 8, 2025
1 parent e383017 commit 2a3de47
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions velox/expression/fuzzer/ExpressionFuzzerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,52 @@ int main(int argc, char** argv) {
// from_unixtime can generate timestamps out of the supported range that
// make other functions throw VeloxRuntimeErrors.
"from_unixtime",
"round", // existing errors noted
"json_size",
"bitwise_right_shift_arithmetic",
"map_size_with",
"binomial_cdf",
"inverse_laplace_cdf",
"gamma_cdf",
"inverse_normal_cdf",
"regr_avgx",
"url_extract_protocl",
"is_json_scalar",
"json_extract_scalar",
"rtrim",
"split",
"array_intersect",
"f_cdf",
"truncate",
"url_extract_query",
"laplace_cdf",
"inverse_beta_cdf",
"conjunct",
"url_extract_host",
"weibull_cdf",
"zip_with",
"url_extract_path",
"cast",
"bitwise_shift_left",
"split_part",
"bitwise_arithmetic_shift_right",
"date_format",
"substr",
"cauchy_cdf",
"map_subset",
"covar_pop",
"lpad",
"url_extract_fragment",
"format_datetime",
"inverse_cauchy_cdf",
"array_position",
"minus", // newly identified
"clamp",
"current_date",
"word_stem",
"json_array_contains",
"chi_squared_cdf",
"xxhash64_internal",
};
size_t initialSeed = FLAGS_seed == 0 ? std::time(nullptr) : FLAGS_seed;

Expand Down

0 comments on commit 2a3de47

Please sign in to comment.