We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6772f42 commit b9ab509Copy full SHA for b9ab509
1 file changed
ci/zig_benchmarks/run_fx_benchmarks.sh
@@ -43,10 +43,22 @@ for fx_file in $FX_FILES; do
43
echo "--- Benchmarking: $filename ---"
44
45
# Allow non-zero exit codes for files that are expected to fail
46
+ # (compilation errors, runtime errors, or expected test failures)
47
EXTRA_ARGS=""
- if [ "$filename" = "division_by_zero.roc" ]; then
48
- EXTRA_ARGS="--ignore-failure"
49
- fi
+ case "$filename" in
+ division_by_zero.roc|\
50
+ issue8433.roc|\
51
+ test_type_mismatch.roc|\
52
+ run_allow_errors.roc|\
53
+ parse_error.roc|\
54
+ run_warning_only.roc|\
55
+ issue8517.roc|\
56
+ stack_overflow_runtime.roc|\
57
+ issue8826_full.roc|\
58
+ issue8943.roc)
59
+ EXTRA_ARGS="--ignore-failure"
60
+ ;;
61
+ esac
62
63
# Run hyperfine comparison
64
if ! hyperfine \
0 commit comments