mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Do not fail if sanitizer is out of memory
This commit is contained in:
parent
c5155b8d32
commit
b85409f976
@ -256,12 +256,21 @@ quit
|
|||||||
if [ "$server_died" == 1 ]
|
if [ "$server_died" == 1 ]
|
||||||
then
|
then
|
||||||
# The server has died.
|
# The server has died.
|
||||||
task_exit_code=210
|
|
||||||
echo "failure" > status.txt
|
|
||||||
if ! zgrep --text -ao "Received signal.*\|Logical error.*\|Assertion.*failed\|Failed assertion.*\|.*runtime error: .*\|.*is located.*\|SUMMARY: AddressSanitizer:.*\|SUMMARY: MemorySanitizer:.*\|SUMMARY: ThreadSanitizer:.*\|.*_LIBCPP_ASSERT.*" server.log.gz > description.txt
|
if ! zgrep --text -ao "Received signal.*\|Logical error.*\|Assertion.*failed\|Failed assertion.*\|.*runtime error: .*\|.*is located.*\|SUMMARY: AddressSanitizer:.*\|SUMMARY: MemorySanitizer:.*\|SUMMARY: ThreadSanitizer:.*\|.*_LIBCPP_ASSERT.*" server.log.gz > description.txt
|
||||||
then
|
then
|
||||||
echo "Lost connection to server. See the logs." > description.txt
|
echo "Lost connection to server. See the logs." > description.txt
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if grep -F --text 'Sanitizer: out-of-memory' description.txt
|
||||||
|
then
|
||||||
|
# OOM of sanitizer is not a problem we can handle - treat it as success, but preserve the description.
|
||||||
|
task_exit_code=0
|
||||||
|
echo "success" > status.txt
|
||||||
|
else
|
||||||
|
task_exit_code=210
|
||||||
|
echo "failure" > status.txt
|
||||||
|
fi
|
||||||
|
|
||||||
elif [ "$fuzzer_exit_code" == "143" ] || [ "$fuzzer_exit_code" == "0" ]
|
elif [ "$fuzzer_exit_code" == "143" ] || [ "$fuzzer_exit_code" == "0" ]
|
||||||
then
|
then
|
||||||
# Variants of a normal run:
|
# Variants of a normal run:
|
||||||
|
Loading…
Reference in New Issue
Block a user