Skip to content

Commit

Permalink
Skip compiler_cli and crash tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Dec 16, 2023
1 parent 666f9d3 commit 58b123b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion compare_compilers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ for arg in "$@"; do
done

if [ ${#files[@]} = 0 ]; then
# skip compiler_cli, because it has a race condition when two compilers simultaneously run it
# TODO: do not skip Advent Of Code files
files=( $(find stdlib examples tests -name '*.jou' | grep -v aoc2023 | sort) )
files=( $(find stdlib examples tests -name '*.jou' | grep -v aoc2023 | grep -v tests/should_succeed/compiler_cli | grep -v tests/crash | sort) )
fi
if [ ${#actions[@]} = 0 ]; then
actions=(tokenize parse run)
Expand Down
1 change: 0 additions & 1 deletion self_hosted/runs_wrong.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# This is a list of files that don't behave correctly when ran with the self-hosted compiler.
tests/crash/null_deref.jou
tests/other_errors/missing_return.jou
tests/other_errors/missing_value_in_return.jou
tests/other_errors/noreturn_but_return_with_value.jou
Expand Down

0 comments on commit 58b123b

Please sign in to comment.