We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is a bug in tools/e2e_test_race.sh that causes it to exit 0 even when a data race is detected or a test fails.
tools/e2e_test_race.sh
0
For example, this End-to-End Test (Race) job from a recent PR has 3 failures with race detected during execution of test but ultimately reports success: https://github.com/vitessio/vitess/actions/runs/5653523125/job/15314840298
race detected during execution of test
The cause is this line in tools/e2e_test_race.sh:
vitess/tools/e2e_test_race.sh
Lines 42 to 43 in b131336
Which should be: ${PIPESTATUS[1]}
${PIPESTATUS[1]}
I didn't open a PR to fix that since the PR will fail CI until all the races are fixed, but I confirmed the issue with a draft PR here: Shopify#112
n/a
The text was updated successfully, but these errors were encountered:
frouioui
Successfully merging a pull request may close this issue.
Overview of the Issue
There is a bug in
tools/e2e_test_race.sh
that causes it to exit0
even when a data race is detected or a test fails.For example, this End-to-End Test (Race) job from a recent PR has 3 failures with
race detected during execution of test
but ultimately reports success: https://github.com/vitessio/vitess/actions/runs/5653523125/job/15314840298The cause is this line in
tools/e2e_test_race.sh
:vitess/tools/e2e_test_race.sh
Lines 42 to 43 in b131336
Which should be:
${PIPESTATUS[1]}
I didn't open a PR to fix that since the PR will fail CI until all the races are fixed, but I confirmed the issue with a draft PR here: Shopify#112
Reproduction Steps
n/a
Binary Version
Operating System and Environment details
Log Fragments
The text was updated successfully, but these errors were encountered: