aboutsummaryrefslogblamecommitdiffstats
path: root/scripts/uniqueErrors.sh
blob: eee1df9038066a32f00f3ec3c39261859f3e6eef (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                    
#!/bin/sh

REPO=$(dirname $0)/..

echo "Finding unique failures..."
(
for x in $*
do
  echo -n $x " # "
  # This subshell is a workaround to prevent the shell from printing
  # "Aborted"
  ("$REPO"/build/test/solfuzzer < "$x" || true) 2>&1 | head -n 1
done
) | sort -u -t'#' -k 2