mirror of https://github.com/google/oss-fuzz.git
49 lines
1.4 KiB
Bash
Executable File
49 lines
1.4 KiB
Bash
Executable File
#!/bin/bash -eu
|
|
# Copyright 2019 Google Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
################################################################################
|
|
|
|
# Build pcre dependency to be linked statically.
|
|
pushd $SRC/pcre
|
|
./autogen.sh
|
|
CFLAGS="$CFLAGS -fno-use-cxa-atexit" CXXFLAGS="$CXXFLAGS -fno-use-cxa-atexit" ./configure
|
|
make -j$(nproc) clean
|
|
make -j$(nproc) all
|
|
popd
|
|
|
|
# build project
|
|
rm -rf build
|
|
|
|
./configure
|
|
make njs_fuzzer
|
|
|
|
cp ./build/njs_process_script_fuzzer $OUT/
|
|
|
|
SEED_CORPUS_PATH=$OUT/njs_process_script_fuzzer_seed_corpus
|
|
mkdir -p $SEED_CORPUS_PATH
|
|
|
|
set +x
|
|
cat src/test/njs_interactive_test.c src/test/njs_unit_test.c \
|
|
| egrep -o '".*"' | awk '{print substr($0,2,length($0)-2)}' | sort | uniq \
|
|
| while IFS= read -r line; do
|
|
echo $line > $SEED_CORPUS_PATH/$(echo $line | sha1sum | awk '{ print $1 }');
|
|
done
|
|
set -x
|
|
|
|
cp -r test/fs test/module $SEED_CORPUS_PATH
|
|
|
|
zip -q $SEED_CORPUS_PATH.zip $SEED_CORPUS_PATH
|
|
rm -rf $SEED_CORPUS_PATH
|