Meta/cycle-run: use SANITIZE

Junio C Hamano committed Jun 11, 2021 at 09:56 UTC 279e009d2c24c53833dd7b744dbffcf043a31369
1 file changed +4 -1
cycle-run
+4 -1
@@ -12,15 +12,18 @@ test_it () {
12 echo "*** log for $subject ***" &&
13 case "$type" in
14 C)
15 + # Single parent commit on a topic
16 Meta/Make -$J &&
17 Meta/Make -$J -- SPARSE_FLAGS=-Wsparse-error sparse
18 ;;
19 M)
20 + # Merges on the first-parent chain on seen
21 Meta/Make -$J -- SPARSE_FLAGS=-Wsparse-error sparse &&
22 Meta/Make -$J -- test
23 ;;
24 T)
23 - Meta/Make -$J -- test &&
25 + # Commit at the tip of a topic
26 + Meta/Make -$J SANITIZE=address,undefined -- test &&
27 Meta/Make -$J -- doc
28 ;;
29 esac