mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 11:15:31 -05:00
* Init files for fuzzing * Fixed fuzz/run.sh * Added fuzzing for CCUtf8_string.uchar_to_bytes
15 lines
244 B
Bash
Executable file
15 lines
244 B
Bash
Executable file
#!/bin/bash
|
|
|
|
script_dir=$(dirname $(readlink -f "$0"))
|
|
|
|
echo "Building"
|
|
|
|
dune build @all
|
|
|
|
echo ""
|
|
|
|
echo "Fuzzing tests available:"
|
|
|
|
for file in "$script_dir"/../_build/default/fuzz/*.exe; do
|
|
echo "- "$(basename $file | sed 's/\.exe$//')
|
|
done
|