Merge pull request #8648 from CurtizJ/rename-tests

Rename tests to be consistent with clickhouse-test options.
This commit is contained in:
alexey-milovidov 2020-01-14 21:37:43 +03:00 committed by GitHub
commit c9a781b099
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 5 additions and 1 deletions

View File

@ -182,7 +182,11 @@ def run_tests_array(all_tests_with_params):
or 'global' in name):
print(MSG_SKIPPED + " - no shard")
skipped_total += 1
elif not args.no_long and 'long' in name:
elif not args.no_long and ('long' in name
# Tests for races and deadlocks usually are runned in loop
# for significant amount of time
or 'deadlock' in name
or 'race' in name):
print(MSG_SKIPPED + " - no long")
skipped_total += 1
else: