2022-05-12 14:06:28 +00:00
|
|
|
#!/bin/bash -eu
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2022-06-28 12:15:15 +00:00
|
|
|
# Copy seed corpus and dictionary.
|
|
|
|
mv $SRC/{*.zip,*.dict} $OUT
|
|
|
|
|
2022-05-12 14:06:28 +00:00
|
|
|
|
|
|
|
export MODDABLE=$PWD
|
|
|
|
|
2022-06-24 23:38:05 +00:00
|
|
|
FUZZ_TARGETS=(
|
|
|
|
xst
|
|
|
|
xst_jsonparse
|
|
|
|
)
|
|
|
|
|
2022-06-28 12:15:15 +00:00
|
|
|
REALBIN_PATH=$OUT
|
2022-06-24 23:38:05 +00:00
|
|
|
|
|
|
|
# build main target
|
2022-05-12 14:06:28 +00:00
|
|
|
cd "$MODDABLE/xs/makefiles/lin"
|
2023-01-19 16:27:31 +00:00
|
|
|
FUZZING=1 OSSFUZZ=1 FUZZ_METER=10240000 make debug
|
2022-05-12 14:06:28 +00:00
|
|
|
|
|
|
|
cd "$MODDABLE"
|
2022-06-28 12:15:15 +00:00
|
|
|
cp ./build/bin/lin/debug/xst $REALBIN_PATH/xst
|
2022-05-12 14:06:28 +00:00
|
|
|
cp $SRC/xst.options $OUT/
|
2022-06-24 23:38:05 +00:00
|
|
|
|
|
|
|
# build jsonparse target
|
|
|
|
cd "$MODDABLE/xs/makefiles/lin"
|
|
|
|
make -f xst.mk clean
|
2023-01-19 16:27:31 +00:00
|
|
|
FUZZING=1 OSSFUZZ=1 OSSFUZZ_JSONPARSE=1 FUZZ_METER=10240000 make debug
|
2022-06-24 23:38:05 +00:00
|
|
|
|
|
|
|
cd "$MODDABLE"
|
2022-06-28 12:15:15 +00:00
|
|
|
cp ./build/bin/lin/debug/xst $REALBIN_PATH/xst_jsonparse
|
2022-06-24 23:38:05 +00:00
|
|
|
|
|
|
|
cp $SRC/xst.options $OUT/xst_jsonparse.options
|