mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
9 lines
278 B
Bash
9 lines
278 B
Bash
|
#!/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/
|