diff options
author | Vijay Pai <vpai@google.com> | 2017-11-28 13:49:28 -0800 |
---|---|---|
committer | Vijay Pai <vpai@google.com> | 2017-11-28 13:49:28 -0800 |
commit | 2a0432edc56b6a1b2ade4c30bc3267717eac5a86 (patch) | |
tree | 893f5e3280f5566500ef5b5fe3e5fe4234a12347 /tools | |
parent | 12bfc62e813ecaf7240cc0b719af721fba3ac459 (diff) |
Remove bash-isms from sanity test
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/sanity/check_unsecure.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/sanity/check_unsecure.sh b/tools/run_tests/sanity/check_unsecure.sh index ef9cc612f1..aabafedfb8 100755 --- a/tools/run_tests/sanity/check_unsecure.sh +++ b/tools/run_tests/sanity/check_unsecure.sh @@ -19,6 +19,6 @@ set -e # Make sure that there is no path from a known unsecure target # to an SSL library -[[ $(bazel query "somepath(//test/cpp/microbenchmarks:helpers, //external:libssl)" 2>/dev/null | wc -l) -eq 0 ]] +test `bazel query "somepath(//test/cpp/microbenchmarks:helpers, //external:libssl)" 2>/dev/null | wc -l` -eq 0 # Fall through with the exit code of that command |