Skip to content

Commit

Permalink
chore: Retry asan/tsan tests a few more times.
Browse files Browse the repository at this point in the history
These are somewhat flaky. A few more retries should make them pass unless
they are properly broken. Most of the time they time out and one more
attempt would pass it. I've added 2 more attempts.
  • Loading branch information
iphydf committed Jan 10, 2022
1 parent f46f51e commit 210ea9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .circleci/cmake-asan
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,4 @@ export ASAN_OPTIONS="$ASAN_OPTIONS,detect_stack_use_after_return=1"
export ASAN_OPTIONS="$ASAN_OPTIONS,strict_init_order=1"
export ASAN_OPTIONS="$ASAN_OPTIONS,strict_string_checks=1"
export ASAN_OPTIONS="$ASAN_OPTIONS,symbolize=1"
ctest -j50 --output-on-failure ||
ctest -j50 --output-on-failure --rerun-failed
ctest -j50 --output-on-failure --rerun-failed --repeat until-pass:4
3 changes: 1 addition & 2 deletions .circleci/cmake-tsan
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,4 @@ ninja install -j"$(nproc)"
export TSAN_OPTIONS="halt_on_error=1"
export TSAN_OPTIONS="$TSAN_OPTIONS,second_deadlock_stack=1"
export TSAN_OPTIONS="$TSAN_OPTIONS,symbolize=1"
ctest -j50 --output-on-failure ||
ctest -j50 --output-on-failure --rerun-failed
ctest -j50 --output-on-failure --rerun-failed --repeat until-pass:4

0 comments on commit 210ea9e

Please sign in to comment.