1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

Merge pull request #2639 from mpg/use-all-sh-checks-for-pre-push

Use all.sh and its component list in pre-push hook
This commit is contained in:
Gilles Peskine
2020-06-23 14:37:16 +02:00
committed by GitHub
2 changed files with 58 additions and 20 deletions

View File

@ -45,18 +45,4 @@ echo "URL is $URL"
set -eu
run_test()
{
TEST=$1
echo "running '$TEST'"
if ! `$TEST > /dev/null 2>&1`; then
echo "test '$TEST' failed"
return 1
fi
}
run_test ./tests/scripts/check-doxy-blocks.pl
run_test ./tests/scripts/check-names.sh
run_test ./tests/scripts/check-generated-files.sh
run_test ./tests/scripts/check-files.py
run_test ./tests/scripts/doxygen.sh
tests/scripts/all.sh -q -k 'check_*'