-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of #111179 - Zalathar:sort-groups, r=Mark-Simulacrum
Fix instrument-coverage tests by using Python to sort instantiation groups #110942 was intended to fix a set of `-Cinstrument-coverage` tests, but it ended up silently *breaking* those tests on Linux, for annoying reasons detailed at #111171. Dealing with `diff --ignore-matching-lines` across multiple platforms has been such a hassle that I've instead written a simple Python script that can detect instantiation groups in the output of `llvm-cov show`, and sort them in a predictable order so that they can be used as snapshots for an ordinary invocation of `diff`. This approach should be much less error-prone, because it can't accidentally ignore the wrong lines, and any unforeseen problems will tend to result in a Python exception or a failing diff.
- Loading branch information
Showing
7 changed files
with
148 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
tests/run-make/coverage-reports/expected_show_coverage.sort_groups.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
1| |// compile-flags: --edition=2021 | ||
2| | | ||
3| |// Demonstrate that `sort_subviews.py` can sort instantiation groups into a | ||
4| |// predictable order, while preserving their heterogeneous contents. | ||
5| | | ||
6| 1|fn main() { | ||
7| 1| let cond = std::env::args().len() > 1; | ||
8| 1| generic_fn::<()>(cond); | ||
9| 1| generic_fn::<&'static str>(!cond); | ||
10| 1| if false { | ||
11| 0| generic_fn::<char>(cond); | ||
12| 1| } | ||
13| 1| generic_fn::<i32>(cond); | ||
14| 1| other_fn(); | ||
15| 1|} | ||
16| | | ||
17| 3|fn generic_fn<T>(cond: bool) { | ||
18| 3| if cond { | ||
19| 1| println!("{}", std::any::type_name::<T>()); | ||
20| 2| } | ||
21| 3|} | ||
------------------ | ||
| Unexecuted instantiation: sort_groups::generic_fn::<char> | ||
------------------ | ||
| sort_groups::generic_fn::<&str>: | ||
| 17| 1|fn generic_fn<T>(cond: bool) { | ||
| 18| 1| if cond { | ||
| 19| 1| println!("{}", std::any::type_name::<T>()); | ||
| 20| 1| } | ||
| ^0 | ||
| 21| 1|} | ||
------------------ | ||
| sort_groups::generic_fn::<()>: | ||
| 17| 1|fn generic_fn<T>(cond: bool) { | ||
| 18| 1| if cond { | ||
| 19| 0| println!("{}", std::any::type_name::<T>()); | ||
| 20| 1| } | ||
| 21| 1|} | ||
------------------ | ||
| sort_groups::generic_fn::<i32>: | ||
| 17| 1|fn generic_fn<T>(cond: bool) { | ||
| 18| 1| if cond { | ||
| 19| 0| println!("{}", std::any::type_name::<T>()); | ||
| 20| 1| } | ||
| 21| 1|} | ||
------------------ | ||
22| | | ||
23| 1|fn other_fn() {} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# `llvm-cov show` prints grouped subviews (e.g. for generic functions) in an | ||
# unstable order, which is inconvenient when checking output snapshots with | ||
# `diff`. To work around that, this script detects consecutive subviews in its | ||
# piped input, and sorts them while preserving their contents. | ||
|
||
from __future__ import print_function | ||
|
||
import sys | ||
|
||
|
||
def main(): | ||
subviews = [] | ||
|
||
def flush_subviews(): | ||
if not subviews: | ||
return | ||
|
||
# The last "subview" should be just a boundary line on its own, so | ||
# temporarily remove it before sorting the accumulated subviews. | ||
terminator = subviews.pop() | ||
subviews.sort() | ||
subviews.append(terminator) | ||
|
||
for view in subviews: | ||
for line in view: | ||
print(line, end="") | ||
|
||
subviews.clear() | ||
|
||
for line in sys.stdin: | ||
if line.startswith(" ------------------"): | ||
# This is a subview boundary line, so start a new subview. | ||
subviews.append([line]) | ||
elif line.startswith(" |"): | ||
# Add this line to the current subview. | ||
subviews[-1].append(line) | ||
else: | ||
# This line is not part of a subview, so sort and print any | ||
# accumulated subviews, and then print the line as-is. | ||
flush_subviews() | ||
print(line, end="") | ||
|
||
flush_subviews() | ||
assert not subviews | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// compile-flags: --edition=2021 | ||
|
||
// Demonstrate that `sort_subviews.py` can sort instantiation groups into a | ||
// predictable order, while preserving their heterogeneous contents. | ||
|
||
fn main() { | ||
let cond = std::env::args().len() > 1; | ||
generic_fn::<()>(cond); | ||
generic_fn::<&'static str>(!cond); | ||
if false { | ||
generic_fn::<char>(cond); | ||
} | ||
generic_fn::<i32>(cond); | ||
other_fn(); | ||
} | ||
|
||
fn generic_fn<T>(cond: bool) { | ||
if cond { | ||
println!("{}", std::any::type_name::<T>()); | ||
} | ||
} | ||
|
||
fn other_fn() {} |