mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Disable long tests with sanitizers
This commit is contained in:
parent
1b71ad26ee
commit
fde9f23829
@ -343,6 +343,13 @@ def test_increment_backup_without_changes():
|
||||
|
||||
|
||||
def test_incremental_backup_overflow():
|
||||
if (
|
||||
instance.is_built_with_thread_sanitizer()
|
||||
or instance.is_built_with_memory_sanitizer()
|
||||
or instance.is_built_with_address_sanitizer()
|
||||
):
|
||||
pytest.skip("The test is slow in builds with sanitizer")
|
||||
|
||||
backup_name = new_backup_name()
|
||||
incremental_backup_name = new_backup_name()
|
||||
|
||||
|
@ -154,6 +154,13 @@ def test_aggregate_states(start_cluster):
|
||||
|
||||
|
||||
def test_string_functions(start_cluster):
|
||||
if (
|
||||
upstream.is_built_with_thread_sanitizer()
|
||||
or upstream.is_built_with_memory_sanitizer()
|
||||
or upstream.is_built_with_address_sanitizer()
|
||||
):
|
||||
pytest.skip("The test is slow in builds with sanitizer")
|
||||
|
||||
functions = backward.query(
|
||||
"""
|
||||
SELECT if(NOT empty(alias_to), alias_to, name)
|
||||
|
Loading…
Reference in New Issue
Block a user