-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Try running all e2e tests in TSAN #6616
base: main
Are you sure you want to change the base?
Conversation
The failures are so verbose we need to look at the raw logs, but on the first run these are the failing tests:
I've got stacks for some missing mutexes and mutex inversions around the snapshotter, which is likely the recovery tests. Will investigate the others. |
First change knocks out of a few of those failures already:
Worryingly we may be missing some TSAN information from the unit tests - they're either muzzled by the test wrapper, or non-fatal warnings:
|
Co-authored-by: Amaury Chamayou <[email protected]>
Surprised to discover that this
if (NOT TSAN)
block gates so many tests. Believe many should now work - let's see what the CI says.