forked from chipsalliance/verible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
triage_formatter.sh
executable file
·120 lines (104 loc) · 3.2 KB
/
triage_formatter.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#!/usr/bin/env bash -e
# Copyright 2020 The Verible Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
usage() {
cat <<EOF
$0 binary timelimit paths...
Identifies test cases 'problematic' to the formatter tool.
Runs from current directory, which should be some common ancestor of <paths>.
Formatter binary location can be relative or absolute.
Time limit is forwarded to /usr/bin/timeout. Recommend '2s'.
Formatter output is not examined, but stderr messages are checked to classify
issues.
EOF
}
test "$#" -ge 3 || { usage; exit 1; }
binary="$(readlink -f $1)"
timelimit="$2"
shift
shift
# remaining positional arguments are paths...
timeout=/usr/bin/timeout
date=$(date +%Y%m%d-%H%M%S)
globs=("*.sv" "*.svh" "*.v" "*.vh")
temproot=${TMPDIR:=/tmp}
tempdir="$temproot/$(basename $0).tmp/run-$date"
# Restrict paths, so it is (a little safer) to concatenate them
# relative to a temporary dir.
for path
do
[[ "$path" != .* ]] ||
{ echo "Relative file paths may not start with '.'" ; exit 1; }
done
# echo "Working in $tempdir"
mkdir -p "$tempdir"
# gather filelist
{
for path
do for glob in "${globs[@]}"
do find "$path" -type f -name "$glob"
done
done
wait
} | sort > "$tempdir/filelist"
num_files="$(wc -l "$tempdir/filelist" | awk '{print $1;}')"
# snapshot unformatted copies
rsync --files-from="$tempdir/filelist" . "$tempdir/orig/"
# note version information
"$binary" --version
echo "### Formatting $num_files files one at a time..."
date
cd "$tempdir/orig"
# Format all files (ignore these exit statuses)
set +e
# Operate serially to minimize risk of crashing host machine.
find . -type f | \
while read f
do
# Silence all diagnostic messages. They can be reproduced later.
# --nofailsafe_success: We want a nonzero exit status to signal error conditions.
"$timeout" --signal=ALRM "$timelimit" \
"$binary" --nofailsafe_success "$f" > "$f.formatted" 2> "$f.stderr"
status="$?"
case "$status" in
124) echo "timedout: $f" ;; # 124 is SIGALRM
0) ;;
*)
if grep -q "token partitions failed to complete" "$f.stderr"
then
echo "large partition: $f"
continue
fi
if grep -q "syntax error" "$f.stderr"
then
echo "rejected input syntax: $f"
continue
fi
if grep -q "Error lex/parsing-ing formatted output" "$f.stderr"
then
echo "corrupted output [syntax error]: $f"
continue
fi
if grep -q "Formatted output is lexically different" "$f.stderr"
then
echo "corrupted output [lex diff]: $f"
continue
fi
# When you see this, add more case handling here.
echo "OTHER error: $f"
;;
esac
done
echo "### Done."
date