mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Merge pull request #62041 from azat/clickhouse-test-no-reference-fix
Fix clickhouse-test in case of missing .reference file
This commit is contained in:
commit
f6d443c927
@ -1646,8 +1646,8 @@ class TestCase:
|
||||
|
||||
client_options = self.add_random_settings(client_options)
|
||||
|
||||
if not is_valid_utf_8(self.case_file) or not is_valid_utf_8(
|
||||
self.reference_file
|
||||
if not is_valid_utf_8(self.case_file) or (
|
||||
self.reference_file and not is_valid_utf_8(self.reference_file)
|
||||
):
|
||||
proc, stdout, stderr, debug_log, total_time = self.run_single_test(
|
||||
server_logs_level, client_options
|
||||
|
Loading…
Reference in New Issue
Block a user