Skip to content

Commit 2a3de47

Browse files
peterenescufacebook-github-bot
authored andcommitted
fix(fuzzer): Stabalize expression fuzzer for nightly run by removing 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
1 parent e383017 commit 2a3de47

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

velox/expression/fuzzer/ExpressionFuzzerTest.cpp

+46
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,52 @@ int main(int argc, char** argv) {
102102
// from_unixtime can generate timestamps out of the supported range that
103103
// make other functions throw VeloxRuntimeErrors.
104104
"from_unixtime",
105+
"round", // existing errors noted
106+
"json_size",
107+
"bitwise_right_shift_arithmetic",
108+
"map_size_with",
109+
"binomial_cdf",
110+
"inverse_laplace_cdf",
111+
"gamma_cdf",
112+
"inverse_normal_cdf",
113+
"regr_avgx",
114+
"url_extract_protocl",
115+
"is_json_scalar",
116+
"json_extract_scalar",
117+
"rtrim",
118+
"split",
119+
"array_intersect",
120+
"f_cdf",
121+
"truncate",
122+
"url_extract_query",
123+
"laplace_cdf",
124+
"inverse_beta_cdf",
125+
"conjunct",
126+
"url_extract_host",
127+
"weibull_cdf",
128+
"zip_with",
129+
"url_extract_path",
130+
"cast",
131+
"bitwise_shift_left",
132+
"split_part",
133+
"bitwise_arithmetic_shift_right",
134+
"date_format",
135+
"substr",
136+
"cauchy_cdf",
137+
"map_subset",
138+
"covar_pop",
139+
"lpad",
140+
"url_extract_fragment",
141+
"format_datetime",
142+
"inverse_cauchy_cdf",
143+
"array_position",
144+
"minus", // newly identified
145+
"clamp",
146+
"current_date",
147+
"word_stem",
148+
"json_array_contains",
149+
"chi_squared_cdf",
150+
"xxhash64_internal",
105151
};
106152
size_t initialSeed = FLAGS_seed == 0 ? std::time(nullptr) : FLAGS_seed;
107153

0 commit comments

Comments
 (0)