1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-26 15:14:24 -04:00

improve test coverage

This commit is contained in:
kslr 2020-06-20 16:09:42 +08:00
parent 8dc133c4c6
commit 78729fc698

View File

@ -19,13 +19,13 @@ if [ -f "${TEST_FILES[0]}" ]; then
test_package ""
fi
while IFS= read -r -d '' DIR
do
# shellcheck disable=SC2044
for DIR in $(find ./* -type d ! -path "*.git*" ! -path "*vendor*" ! -path "*external*"); do
TEST_FILES=("$DIR"/*_test.go)
if [ -f "${TEST_FILES[0]}" ]; then
test_package "/$DIR"
fi
done < <(find ./* -type d ! -path "*.git*" ! -path "*vendor*" ! -path "*external*" -print0)
done
# merge out
while IFS= read -r -d '' OUT_FILE