ClickHouse/utils/check-style/check-include-stat
proller 5678d1ed98 Build fixes (#3545)
* StorageSystemContributors clean

* Fix

* ARM fixes

* Fix arm compile

* fix

* Fix macos?

* Fix includes

* fix

* fix

* Try fix apple build part 1

* Fix identation

* Fix static libc++ in clang

* fix arm build

* better

* fix

* fix

*  better check-include
2018-11-10 23:09:07 +03:00

26 lines
485 B
Bash
Executable File

#!/bin/sh
set -e
CUR_DIR=`dirname $0`
CUR_DIR=`readlink -f $CUR_DIR`
CUR_DIR="${CUR_DIR}/"
RESULT_FILE=${RESULT_FILE:=${CUR_DIR}check-include.log}
finish() {
echo include check failed:
cat $RESULT_FILE
}
trap finish 0 1 3 6 15
sh ${CUR_DIR}check-include > $RESULT_FILE 2>&1
echo Results:
echo Top by memory:
cat $RESULT_FILE | sort -rk4 | head -n20
echo Top by time:
cat $RESULT_FILE | sort -rk3 | head -n20
echo Top by includes:
cat $RESULT_FILE | sort -rk2 | head -n20