-
Notifications
You must be signed in to change notification settings - Fork 485
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
Enable sanitizers for postgres v17 #10401
base: main
Are you sure you want to change the base?
Conversation
7414 tests run: 7063 passed, 0 failed, 351 skipped (full report)Flaky tests (8)Postgres 17
Postgres 16
Postgres 15
Code coverage* (full report)
* collected from Rust tests only The comment gets automatically updated with the latest test results
0ac2f2a at 2025-01-30T09:15:17.611Z :recycle: |
eceae41
to
414930a
Compare
cdfd9e7
to
e956d9a
Compare
999686c
to
aafd0c8
Compare
555aeae
to
a4765cd
Compare
7b12643
to
3b2d052
Compare
7e9d7c9
to
cc18b86
Compare
3d99564
to
592eeca
Compare
cc18b86
to
be6af82
Compare
082a7d3
to
16846db
Compare
…st_tx_abort_with_many_relations to support slow builds with sanitizers
…torage_controller
…previous postgres versions)
16846db
to
6880ac8
Compare
@@ -32,14 +32,15 @@ | |||
flaky BOOLEAN NOT NULL, | |||
arch arch DEFAULT 'X64', | |||
lfc BOOLEAN DEFAULT false NOT NULL, | |||
sanitizers BOOLEAN DEFAULT false NOT NULL, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've added sanitizers
column to the db (it's false
by default), could you please add setting it from test results?
You can use LFC as an example, you need to add changes to scripts/ingest_regress_test_result-new-format.py
and test_runner/fixtures/parametrize.py
and maybe to workflow to set this env variable for test runs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please look at a commit I've added to address this: 0ac2f2a
Add a build with sanitizers (asan, ubsan) to the CI pipeline and run tests on it.
See #6053