diff options
author | Mehrdad Afshari <mmx@google.com> | 2017-06-27 14:46:33 -0700 |
---|---|---|
committer | Mehrdad Afshari <mmx@google.com> | 2017-12-15 13:31:44 -0800 |
commit | 4ef3c9217054385d6f7d2e8d65129e07dea32c93 (patch) | |
tree | 29d4a3af8708f9648f5ad24d41ca55b46279059f /tools/run_tests | |
parent | d8ef4887dd4394a4d6cd9ca065160e4afad77a0a (diff) |
Fix post_tests_php.sh to pass shellcheck
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-x | tools/run_tests/helper_scripts/post_tests_php.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/run_tests/helper_scripts/post_tests_php.sh b/tools/run_tests/helper_scripts/post_tests_php.sh index 8ebc1e4fae..b23e4bd113 100755 --- a/tools/run_tests/helper_scripts/post_tests_php.sh +++ b/tools/run_tests/helper_scripts/post_tests_php.sh @@ -17,15 +17,15 @@ set -ex if [ "$CONFIG" != "gcov" ] ; then exit ; fi -root=$(readlink -f $(dirname $0)/../../..) +root=$(readlink -f "$(dirname "$0")/../../..") out=$root/reports/php_ext_coverage tmp1=$(mktemp) tmp2=$(mktemp) -cd $root -lcov --capture --directory . --output-file $tmp1 -lcov --extract $tmp1 "$root/src/php/ext/grpc/*" --output-file $tmp2 -genhtml $tmp2 --output-directory $out -rm $tmp2 -rm $tmp1 +cd "$root" +lcov --capture --directory . --output-file "$tmp1" +lcov --extract "$tmp1" "$root/src/php/ext/grpc/*" --output-file "$tmp2" +genhtml "$tmp2" --output-directory "$out" +rm "$tmp2" +rm "$tmp1" # todo(mattkwong): generate coverage report for php and copy to reports/php |