提交 bf2fb5f2 编写于 作者: P proller

clickhouse-test: early exit if server died (more than 20 queries failed in...

clickhouse-test: early exit if server died (more than 20 queries failed in chain). Auto use system queries dir.
上级 1c06c0f8
......@@ -114,6 +114,7 @@ def main(args):
print("\nRunning {} tests.\n".format(suite))
failures = 0
failures_chain = 0
if 'stateful' in suite and not is_data_present():
print("Won't run stateful tests because test data wasn't loaded. See README.txt.")
continue
......@@ -208,6 +209,7 @@ def main(args):
report_testcase.append(stdout_element)
failures = failures + 1
failures_chain = failures_chain + 1
print("{0} - return code {1}".format(MSG_FAIL, proc.returncode))
if stderr:
......@@ -228,6 +230,7 @@ def main(args):
report_testcase.append(stderr_element)
failures = failures + 1
failures_chain = failures_chain + 1
print("{0} - having stderror:\n{1}".format(MSG_FAIL, stderr.encode('utf-8')))
elif 'Exception' in stdout:
failure = et.Element("error", attrib = {"message": "having exception"})
......@@ -238,6 +241,7 @@ def main(args):
report_testcase.append(stdout_element)
failures = failures + 1
failures_chain = failures_chain + 1
print("{0} - having exception:\n{1}".format(MSG_FAIL, stdout.encode('utf-8')))
elif not os.path.isfile(reference_file):
skipped = et.Element("skipped", attrib = {"message": "no reference file"})
......@@ -268,6 +272,7 @@ def main(args):
os.remove(stdout_file)
if os.path.exists(stderr_file):
os.remove(stderr_file)
failures_chain = 0
except KeyboardInterrupt as e:
print(colored("Break tests execution", "red"))
raise e
......@@ -281,6 +286,9 @@ def main(args):
finally:
dump_report(args.output, suite, name, report_testcase)
if failures_chain >= 20:
break
failures_total = failures_total + failures
if failures_total > 0:
......@@ -293,8 +301,8 @@ def main(args):
if __name__ == '__main__':
parser = ArgumentParser(description = 'ClickHouse functional tests')
parser.add_argument('-q', '--queries', default = 'queries', help = 'Path to queries dir')
parser.add_argument('--tmp', default = 'queries', help = 'Path to tmp dir')
parser.add_argument('-q', '--queries', help = 'Path to queries dir')
parser.add_argument('--tmp', help = 'Path to tmp dir')
parser.add_argument('-b', '--binary', default = 'clickhouse', help = 'Main clickhouse binary')
parser.add_argument('-c', '--client', help = 'Client program')
parser.add_argument('--clientconfig', help = 'Client config (if you use not default ports)')
......@@ -314,6 +322,16 @@ if __name__ == '__main__':
group.add_argument('--no-shard', action = 'store_false', default = None, dest = 'shard', help = 'Do not run shard related tests')
args = parser.parse_args()
if args.queries is None and os.path.isdir('queries'):
args.queries = 'queries'
if args.tmp is None:
args.tmp = args.queries
else:
args.queries = '/usr/share/clickhouse-test/queries'
if args.tmp is None:
args.tmp = '/tmp/clickhouse-test'
if args.client is None:
args.client = args.binary + '-client'
if args.clientconfig:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册