Skip to content

Commit 6dde379

Browse files
authored
Fix fuzzer executable detection in test_all. (#156)
1 parent 1e6cf3d commit 6dde379

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

infra/base-images/base-runner/test_all

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ set -o pipefail
2424

2525
N=0
2626
for FUZZER_BINARY in $(find $OUT/ -executable -type f); do
27+
if file "$FUZZER_BINARY" | grep -v ELF > /dev/null 2>&1; then
28+
continue
29+
fi
30+
2731
FUZZER=$(basename $FUZZER_BINARY)
2832
echo "testing $FUZZER"
2933
out=$(tempfile)

0 commit comments

Comments
 (0)