mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
82f25bacf2
* most issues resolved * fuzz wrapper fixes * more deepsource * more shell * export * shell * combine func params, fix go deep source issues Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
9 lines
284 B
Bash
Executable File
9 lines
284 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# A wrapper for libfuzz tests that sets test undeclared outputs directory as the first corpus
|
|
# which libfuzz will write to and the artifact prefix to write any crashes.
|
|
|
|
$1 "$TEST_UNDECLARED_OUTPUTS_DIR" "${@:2}" -artifact_prefix="$TEST_UNDECLARED_OUTPUTS_DIR"/
|