-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgenerate-commits.sh
executable file
·43 lines (39 loc) · 1.13 KB
/
generate-commits.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
#!/bin/bash
BASE=$(dirname $0)
SCRIPTS="$BASE"/../scripts/
OUT=$(mktemp --tmpdir -d array_size-XXXXXX)
# Unfortunately, "make coccicheck MODE=patch COCCI=path/to/our.cocci" can't
# be used because it interleaves the patch output. Instead, use the wrapper
# "super-spatch" to merge the output.
#
# The arguments are Linux Makefile-specific, so this attempts to extract
# the desired arguments from the execution error message.
ARGS=$(make coccicheck V=1 MODE=patch COCCI=/dev/null 2>&1 | \
grep ^Running | \
awk -F"/usr/bin/spatch " '{print $2}' | \
sed \
-e 's/-D patch //' \
-e 's/--cocci-file \/dev\/null //' \
-e 's/--dir \. //' \
-e 's/--jobs [0-9]*//' \
-e 's/--chunksize [0-9]*//' \
)
#
# Ignore changes in the tools/ subdirectory via filterdiff.
for i in $(cat "$BASE"/order.txt); do
echo $i
$SCRIPTS/super-spatch \
$ARGS \
--cocci-file $BASE/$i.cocci \
--dir . \
2>"$OUT"/$i.err | \
filterdiff -p1 -x 'tools/*' | \
filterdiff -p1 -x 'scripts/*' | \
tee "$OUT"/$i.patch
grep -v 'files match' "$OUT"/$i.err
if [ -s "$OUT"/$i.patch ]; then
patch -p1 < "$OUT"/$i.patch
git commit -asm $i
fi
done
rm -rf "$OUT"