File: run_all.sh

package info (click to toggle)
glaze 7.0.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,036 kB
  • sloc: cpp: 142,035; sh: 109; ansic: 26; makefile: 12
file content (11 lines) | stat: -rwxr-xr-x 246 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
#
# invoked from github action.
# runs all fuzzers using all cores for a limited time

set -eu

SCRIPTDIR=$(dirname "$0")

ls fuzzing/fuzz_*|sort --random-sort | \
   xargs --verbose --max-procs $(nproc) -n 1 "$SCRIPTDIR"/run_single.sh