This commit is contained in:
Alexey Milovidov 2024-05-13 00:25:29 +02:00
parent c2caaf007c
commit 034256b405

View File

@ -10,5 +10,7 @@ CUR_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
#
# Also note, that to rely on this test one should assume that CI packages uses
# ThinLTO builds.
#
# Due to inlining, it can show vector instead of Exception.cpp
$CLICKHOUSE_LOCAL --stacktrace -q 'select throwIf(1)' |& grep -c 'Common/Exception.cpp:[0-9]*: DB::Exception::Exception' || $CLICKHOUSE_LOCAL --stacktrace -q 'select throwIf(1)'
$CLICKHOUSE_LOCAL --stacktrace -q 'select throwIf(1)' |& grep -c -P '(Common/Exception.cpp|libcxx/include/vector):[0-9]*: DB::Exception::Exception' || $CLICKHOUSE_LOCAL --stacktrace -q 'select throwIf(1)'