-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix toolchain to avoid LLVM complaining on TSAN usage.
- Loading branch information
1 parent
d990f4e
commit 5ef3525
Showing
3 changed files
with
16 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
nightly | ||
nightly-2024-03-13 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
# Suppress false positives from Arc. | ||
# This is supposed to be fixed in https://github.com/rust-lang/rust/pull/65097, | ||
# but tsan still reports races in Arc::drop. Why?? | ||
# The grading script doesn't test Arc, but we still have it listed here anyway so that | ||
# `cargo_tsan test` does not give out false positives. | ||
race:Arc | ||
|
||
# uses fences | ||
race:crossbeam_epoch |