Commit d72a727
committed
github/gen-matrix.py: add sanitize mode, exclude g++ debug+sanitize
Add 'sanitize' as a third value in MODES so all-pairs covers it across
the compiler/standard/arch axes instead of pinning it to two explicit
one-offs. The regular grid grows from 8 to 10 items; specials drop by
two for a net +2 rows.
Exclude (g++-{15,16}, debug) and (g++-{15,16}, sanitize) from the
regular matrix via allpairspy's filter_func. gcc 15+ miscompiles
structured bindings inside loops in coroutines: the hidden tuple's
lifetime tracking is broken, so the destructor runs on uninitialized
(ASan-poisoned, 0xBE) stack memory. In debug mode this surfaces as a
pollable_fd_state LSan leak via reactor::do_accept's cross-shard
forwarding path; in sanitize mode UBSan aborts the rpc client/server
loops at startup. Drop EXCLUDED_PAIRS once
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=124584 is fixed (tracked
in scylladb#3431) so g++ debug + sanitize come back into
coverage.1 parent 3e61e79 commit d72a727
2 files changed
Lines changed: 37 additions & 13 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | | - | |
12 | | - | |
13 | | - | |
14 | | - | |
15 | | - | |
16 | | - | |
17 | | - | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
| 45 | + | |
46 | 46 | | |
47 | 47 | | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
48 | 68 | | |
49 | 69 | | |
50 | 70 | | |
| |||
109 | 129 | | |
110 | 130 | | |
111 | 131 | | |
112 | | - | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
113 | 136 | | |
114 | 137 | | |
115 | 138 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | | - | |
32 | | - | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
33 | 34 | | |
34 | 35 | | |
35 | 36 | | |
| |||
0 commit comments