[infra] pipefail is no longer needed

This commit is contained in:
Mike Aizatsky 2016-12-12 16:33:03 -08:00 committed by GitHub
parent 598c8ba618
commit 7f162d0fed
1 changed files with 0 additions and 3 deletions

View File

@ -17,8 +17,6 @@
# Test every fuzzer. Fails on first fuzzer failure.
set -o pipefail
N=0
for FUZZER_BINARY in $(find $OUT/ -executable -type f); do
if file "$FUZZER_BINARY" | grep -v ELF > /dev/null 2>&1; then
@ -38,4 +36,3 @@ if [ "$N" -eq "0" ]; then
fi
echo "$N fuzzers total"