aboutsummaryrefslogtreecommitdiff
path: root/projects/pygments
diff options
context:
space:
mode:
authorFabian Meumertzheim <meumertzheim@code-intelligence.com>2021-05-12 16:03:21 +0200
committerGitHub <noreply@github.com>2021-05-12 07:03:21 -0700
commit10e888b5617ee53f03f58b76aa408b9adec9286e (patch)
tree2cbac5f118ac61db8f3c93852a928d2af6105ecb /projects/pygments
parentc447cfedf46682dbabc05668e446419d47e22964 (diff)
downloadoss-fuzz-10e888b5617ee53f03f58b76aa408b9adec9286e.tar.gz
[all] Make fuzz targets world executable (#5751)
Making fuzz targets only user executable as the root user makes them non-executable outside the container, e.g. in the oss-fuzz/build/ dir.
Diffstat (limited to 'projects/pygments')
-rw-r--r--projects/pygments/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/pygments/build.sh b/projects/pygments/build.sh
index 01924b50d..4e59eb6ae 100644
--- a/projects/pygments/build.sh
+++ b/projects/pygments/build.sh
@@ -30,7 +30,7 @@ for fuzzer in $(find $SRC -name '*_fuzzer.py'); do
this_dir=\$(dirname \"\$0\")
ASAN_OPTIONS=\$ASAN_OPTIONS:symbolize=1:external_symbolizer_path=\$this_dir/llvm-symbolizer:detect_leaks=0 \
\$this_dir/$fuzzer_package \$@" > $OUT/$fuzzer_basename
- chmod u+x $OUT/$fuzzer_basename
+ chmod +x $OUT/$fuzzer_basename
done
zip -j $OUT/files_fuzzer_seed_corpus.zip tests/examplefiles/*