Skip to content
Permalink
4a60210210
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 59 lines (48 sloc) 1.83 KB
#!/bin/bash -eu
# Copyright 2020 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.
#
################################################################################
# Note: This project creates Rust fuzz targets exclusively
build() {
project=$1
shift
fuzzer_prefix=$1
shift
fuzz_targets=$1
shift
PROJECT_DIR=$SRC/$project
cd $PROJECT_DIR/fuzz && cargo fuzz build -O --debug-assertions "$@"
FUZZ_TARGET_OUTPUT_DIR=$PROJECT_DIR/target/x86_64-unknown-linux-gnu/release
if [ "x$fuzz_targets" = "x" ]; then
fuzz_targets=$PROJECT_DIR/fuzz/fuzz_targets/*.rs
fi
for f in $fuzz_targets; do
src_name=$(basename ${f%.*})
dst_name=$fuzzer_prefix$src_name
cp $FUZZ_TARGET_OUTPUT_DIR/$src_name $OUT/$dst_name
if [[ -d $SRC/wasmtime/wasmtime-libfuzzer-corpus/$dst_name/ ]]; then
zip -jr \
$OUT/${dst_name}_seed_corpus.zip \
$SRC/wasmtime/wasmtime-libfuzzer-corpus/$dst_name/
fi
cp $SRC/default.options $OUT/$dst_name.options
done
}
# Build with peepmatic in order to enable the related fuzz targets.
build wasmtime "" "" --features peepmatic-fuzzing
# Build the differential fuzzer with the new x86-64 backend as well.
build wasmtime diff-newbe- differential_wasmi --features experimental_x64
build wasm-tools wasm-tools- ""
build regalloc.rs regalloc- bt bt