Meta/round: add 'undefined' checker, too
Junio C Hamano committed
Oct 10, 2022 at 14:35 UTC
eee9bb7e054c755a0799370ac3eeef4ea848d8b2
1 file changed
+4
-4
round
+4
-4
@@ -1,7 +1,7 @@
1
#!/bin/sh
2
3
# Give names of targets to use on the command line
4
-default="sparse hdr-check coccicheck test leaks address check-docs doc"
4
+default="sparse hdr-check leaks address undefined coccicheck check-docs doc"
5
skip=" "
6
more=" "
7
@@ -31,9 +31,9 @@ do
31
esac
32
33
case "$t" in
34
- address)
34
+ address | undefined)
35
Meta/Make -j16 distclean >/dev/null 2>&1 &&
36
- SANITIZE=address \
36
+ SANITIZE=$t \
37
Meta/Make -j16 test
38
;;
39
leaks)
@@ -45,7 +45,7 @@ do
45
SPATCH_FLAGS=--recursive-includes Meta/Make -j16 "$t"
46
;;
47
*)
48
- SPATCH_FLAGS=--recursive-includes Meta/Make -j16 "$t"
48
+ Meta/Make -j16 "$t"
49
;;
50
esac || return 1
51
done &&