mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
query fuzzer
This commit is contained in:
parent
96125111fe
commit
3d13da1c24
@ -152,8 +152,8 @@ case "$stage" in
|
|||||||
if [ "$fuzzer_exit_code" == 143 ]
|
if [ "$fuzzer_exit_code" == 143 ]
|
||||||
then
|
then
|
||||||
# SIGTERM -- the fuzzer was killed by timeout, which means a normal run.
|
# SIGTERM -- the fuzzer was killed by timeout, which means a normal run.
|
||||||
echo "OK" > description.txt
|
|
||||||
echo "success" > status.txt
|
echo "success" > status.txt
|
||||||
|
echo "OK" > description.txt
|
||||||
task_exit_code=0
|
task_exit_code=0
|
||||||
elif [ "$fuzzer_exit_code" == 210 ]
|
elif [ "$fuzzer_exit_code" == 210 ]
|
||||||
then
|
then
|
||||||
@ -162,14 +162,14 @@ case "$stage" in
|
|||||||
echo "failure" > status.txt
|
echo "failure" > status.txt
|
||||||
if ! grep -a "Received signal \|Logical error" server.log > description.txt
|
if ! grep -a "Received signal \|Logical error" server.log > description.txt
|
||||||
then
|
then
|
||||||
echo "Exit code $fuzzer_exit_code. See the logs" > description.txt
|
echo "Lost connection to server. See the logs" > description.txt
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
# Something different -- maybe the fuzzer itself died? Don't grep the
|
# Something different -- maybe the fuzzer itself died? Don't grep the
|
||||||
# server log in this case, because we will find a message about normal
|
# server log in this case, because we will find a message about normal
|
||||||
# server termination (Received signal 15), which is confusing.
|
# server termination (Received signal 15), which is confusing.
|
||||||
echo "failure" > status.txt
|
echo "failure" > status.txt
|
||||||
echo "Exit code $fuzzer_exit_code. See the logs" > description.txt
|
echo "Fuzzer failed ($fuzzer_exit_code). See the logs" > description.txt
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exit $task_exit_code
|
exit $task_exit_code
|
||||||
|
Loading…
Reference in New Issue
Block a user