mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-26 03:20:37 +00:00
When the run scripts for tests of cql-pytest, alternator, redis, etc., run Scylla, they should set the UBSAN_OPTIONS and ASAN_OPTIONS so that if the executable is built with sanitizers enabled, it will ignore false positives that we know about, and fail on real errors. The change in this patch affects all test/*/run scripts which use the this shared Scylla-starting code. test.py already had the same settings, and it affected the tests that it knows to run directly (unit tests, cql-pytest, etc.). Fixes #10904 Signed-off-by: Nadav Har'El <nyh@scylladb.com> Closes #10915