Skip to content

Commit 8fc697f

Browse files
committed
rename some tests to avoid exceeding windows path limits
And restored missing error message from llvm-cov show And since some CI builds disable LLVM assertions (which disables the --debug option in llvm-cov show), I check to see if LLVM assertions are disabled, and if so, I don't add --debug and don't check the counter file diffs.
1 parent cdbce10 commit 8fc697f

File tree

97 files changed

+847
-819
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+847
-819
lines changed

Diff for: src/test/run-make-fulldeps/coverage-reports-base/Makefile

+24-6
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,19 @@
1313
BASEDIR=../coverage-reports-base
1414
SOURCEDIR=../coverage
1515

16+
# The `llvm-cov show` flag `--debug`, used to generate the `counters` output files, is only enabled
17+
# if LLVM assertions are enabled. Some CI builds disable debug assertions.
18+
ifndef NO_LLVM_ASSERTIONS
19+
DEBUG_FLAG=--debug
20+
endif
21+
22+
# When generating `expected_*` results (using `x.py test --bless`), the `--debug` flag is forced.
23+
# If assertions are disabled, the command will fail with an error, rather than attempt to generate
24+
# only partial results.
25+
ifdef RUSTC_BLESS_TEST
26+
DEBUG_FLAG=--debug
27+
endif
28+
1629
all: $(patsubst $(SOURCEDIR)/%.rs,%,$(wildcard $(SOURCEDIR)/*.rs))
1730

1831
# Ensure there are no `expected` results for tests that may have been removed or renamed
@@ -50,24 +63,27 @@ endif
5063
"$(TMPDIR)"/[email protected] \
5164
-o "$(TMPDIR)"/[email protected]
5265

53-
# Generate a coverage report using `llvm-cov show`. The output ordering
54-
# can be non-deterministic, so ignore the return status. If the test fails
55-
# when comparing the JSON `export`, the `show` output may be useful when
56-
# debugging.
66+
# Generate a coverage report using `llvm-cov show`.
5767
"$(LLVM_BIN_DIR)"/llvm-cov show \
58-
--debug \
68+
$(DEBUG_FLAG) \
5969
--Xdemangler="$(RUST_DEMANGLER)" \
6070
--show-line-counts-or-regions \
6171
--instr-profile="$(TMPDIR)"/[email protected] \
6272
$(call BIN,"$(TMPDIR)"/$@) \
6373
> "$(TMPDIR)"/[email protected] \
64-
2> "$(TMPDIR)"/[email protected]
74+
2> "$(TMPDIR)"/[email protected] || \
75+
( status=$$? ; \
76+
>&2 cat "$(TMPDIR)"/[email protected] ; \
77+
exit $$status \
78+
)
6579

80+
ifdef DEBUG_FLAG
6681
# The first line (beginning with "Args:" contains hard-coded, build-specific
6782
# file paths. Strip that line and keep the remaining lines with counter debug
6883
# data.
6984
tail -n +2 "$(TMPDIR)"/[email protected] \
7085
> "$(TMPDIR)"/[email protected]
86+
endif
7187

7288
ifdef RUSTC_BLESS_TEST
7389
cp "$(TMPDIR)"/[email protected] \
@@ -87,6 +103,7 @@ else
87103
false \
88104
)
89105

106+
ifdef DEBUG_FLAG
90107
$(DIFF) [email protected] "$(TMPDIR)"/[email protected] || \
91108
( grep -q '^\/\/ ignore-llvm-cov-show-diffs' $(SOURCEDIR)/[email protected] && \
92109
>&2 echo 'diff failed, but suppressed with `// ignore-llvm-cov-show-diffs` in $(SOURCEDIR)/[email protected]' \
@@ -99,6 +116,7 @@ else
99116
# so the crate disambiguator differences will be stripped away. At that point, these files
100117
# will be less likely to vary, and the last `echo` above (starting with "Ignore anyway")
101118
# can be replaced with `false` to fail the test.
119+
endif
102120

103121
endif
104122

Diff for: src/test/run-make-fulldeps/coverage-reports-deadcode/expected_export_coverage.various_conditions.json renamed to src/test/run-make-fulldeps/coverage-reports-base/expected_export_coverage.conditions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"files": [
55
{
6-
"filename": "../coverage/various_conditions.rs",
6+
"filename": "../coverage/conditions.rs",
77
"summary": {
88
"functions": {
99
"count": 1,

Diff for: src/test/run-make-fulldeps/coverage-reports-base/expected_export_coverage.loops_and_branches.json renamed to src/test/run-make-fulldeps/coverage-reports-base/expected_export_coverage.loops_branches.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"files": [
55
{
6-
"filename": "../coverage/loops_and_branches.rs",
6+
"filename": "../coverage/loops_branches.rs",
77
"summary": {
88
"functions": {
99
"count": 2,
+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"files": [
55
{
6-
"filename": "../coverage/partial_eq_counter_without_region.rs",
6+
"filename": "../coverage/partial_eq.rs",
77
"summary": {
88
"functions": {
99
"count": 5,

Diff for: src/test/run-make-fulldeps/coverage-reports-deadcode/expected_export_coverage.tight_infinite_loop.json renamed to src/test/run-make-fulldeps/coverage-reports-base/expected_export_coverage.tight_inf_loop.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"files": [
55
{
6-
"filename": "../coverage/tight_infinite_loop.rs",
6+
"filename": "../coverage/tight_inf_loop.rs",
77
"summary": {
88
"functions": {
99
"count": 1,

Diff for: src/test/run-make-fulldeps/coverage-reports-base/expected_export_coverage.while_early_return.json renamed to src/test/run-make-fulldeps/coverage-reports-base/expected_export_coverage.while_early_ret.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"files": [
55
{
6-
"filename": "../coverage/while_early_return.rs",
6+
"filename": "../coverage/while_early_ret.rs",
77
"summary": {
88
"functions": {
99
"count": 1,

Diff for: src/test/run-make-fulldeps/coverage-reports-base/expected_show_coverage_counters.various_conditions.txt renamed to src/test/run-make-fulldeps/coverage-reports-base/expected_show_coverage_counters.conditions.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Counter in file 0 62:10 -> 62:11, #48
6767
Counter in file 0 63:9 -> 63:23, #10
6868
Counter in file 0 65:9 -> 65:15, #6
6969
Counter in file 0 67:1 -> 67:2, ((#9 + #10) + (((#6 + #7) + #8) + (((#2 + 0) - #3) - #5)))
70-
Emitting segments for file: ../coverage/various_conditions.rs
70+
Emitting segments for file: ../coverage/conditions.rs
7171
Combined regions:
7272
4:9 -> 4:26 (count=1)
7373
5:8 -> 5:12 (count=1)

Diff for: src/test/run-make-fulldeps/coverage-reports-base/expected_show_coverage_counters.loops_and_branches.txt renamed to src/test/run-make-fulldeps/coverage-reports-base/expected_show_coverage_counters.loops_branches.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Counter in file 0 17:10 -> 17:11, #3
77
Counter in file 0 18:9 -> 18:15, (#3 + 0)
88
Counter in file 0 19:5 -> 19:6, (#4 + (#3 + 0))
99
Counter in file 0 22:11 -> 25:2, #1
10-
Emitting segments for file: ../coverage/loops_and_branches.rs
10+
Emitting segments for file: ../coverage/loops_branches.rs
1111
Combined regions:
1212
10:12 -> 10:16 (count=1)
1313
11:16 -> 11:21 (count=1)
+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Counter in file 0 13:9 -> 18:6, #1
55
Counter in file 0 4:39 -> 4:40, #1
66
Counter in file 0 4:48 -> 4:49, (#1 + 0)
77
Counter in file 0 8:5 -> 8:17, #1
8-
Emitting segments for file: ../coverage/partial_eq_counter_without_region.rs
8+
Emitting segments for file: ../coverage/partial_eq.rs
99
Combined regions:
1010
4:17 -> 4:22 (count=2)
1111
4:39 -> 4:40 (count=1)

Diff for: src/test/run-make-fulldeps/coverage-reports-base/expected_show_coverage_counters.tight_infinite_loop.txt renamed to src/test/run-make-fulldeps/coverage-reports-base/expected_show_coverage_counters.tight_inf_loop.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Counter in file 0 2:8 -> 2:13, #1
22
Counter in file 0 5:1 -> 5:2, (#1 - #2)
3-
Emitting segments for file: ../coverage/tight_infinite_loop.rs
3+
Emitting segments for file: ../coverage/tight_inf_loop.rs
44
Combined regions:
55
2:8 -> 2:13 (count=1)
66
5:1 -> 5:2 (count=1)

Diff for: src/test/run-make-fulldeps/coverage-reports-deadcode/expected_show_coverage_counters.while_early_return.txt renamed to src/test/run-make-fulldeps/coverage-reports-base/expected_show_coverage_counters.while_early_ret.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Counter in file 0 26:21 -> 26:27, #5
77
Counter in file 0 30:9 -> 32:10, #2
88
Counter in file 0 35:5 -> 35:11, #3
99
Counter in file 0 36:1 -> 36:2, ((#4 + #5) + #3)
10-
Emitting segments for file: ../coverage/while_early_return.rs
10+
Emitting segments for file: ../coverage/while_early_ret.rs
1111
Combined regions:
1212
5:9 -> 5:27 (count=1)
1313
7:9 -> 9:10 (count=7)

Diff for: src/test/run-make-fulldeps/coverage-reports-base/expected_export_coverage.various_conditions.json renamed to src/test/run-make-fulldeps/coverage-reports-deadcode/expected_export_coverage.conditions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"files": [
55
{
6-
"filename": "../coverage/various_conditions.rs",
6+
"filename": "../coverage/conditions.rs",
77
"summary": {
88
"functions": {
99
"count": 1,

Diff for: src/test/run-make-fulldeps/coverage-reports-deadcode/expected_export_coverage.loops_and_branches.json renamed to src/test/run-make-fulldeps/coverage-reports-deadcode/expected_export_coverage.loops_branches.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"files": [
55
{
6-
"filename": "../coverage/loops_and_branches.rs",
6+
"filename": "../coverage/loops_branches.rs",
77
"summary": {
88
"functions": {
99
"count": 2,
+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"files": [
55
{
6-
"filename": "../coverage/partial_eq_counter_without_region.rs",
6+
"filename": "../coverage/partial_eq.rs",
77
"summary": {
88
"functions": {
99
"count": 5,

Diff for: src/test/run-make-fulldeps/coverage-reports-base/expected_export_coverage.tight_infinite_loop.json renamed to src/test/run-make-fulldeps/coverage-reports-deadcode/expected_export_coverage.tight_inf_loop.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"files": [
55
{
6-
"filename": "../coverage/tight_infinite_loop.rs",
6+
"filename": "../coverage/tight_inf_loop.rs",
77
"summary": {
88
"functions": {
99
"count": 1,

Diff for: src/test/run-make-fulldeps/coverage-reports-deadcode/expected_export_coverage.while_early_return.json renamed to src/test/run-make-fulldeps/coverage-reports-deadcode/expected_export_coverage.while_early_ret.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"files": [
55
{
6-
"filename": "../coverage/while_early_return.rs",
6+
"filename": "../coverage/while_early_ret.rs",
77
"summary": {
88
"functions": {
99
"count": 1,
+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
4| 2|#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
55
^1 ^1
66
------------------
7-
| Unexecuted instantiation: <partial_eq_counter_without_region::Version as core::cmp::PartialOrd>::gt
7+
| Unexecuted instantiation: <partial_eq::Version as core::cmp::PartialOrd>::gt
88
------------------
9-
| Unexecuted instantiation: <partial_eq_counter_without_region::Version as core::cmp::PartialOrd>::le
9+
| Unexecuted instantiation: <partial_eq::Version as core::cmp::PartialOrd>::le
1010
------------------
11-
| Unexecuted instantiation: <partial_eq_counter_without_region::Version as core::cmp::PartialOrd>::ge
11+
| Unexecuted instantiation: <partial_eq::Version as core::cmp::PartialOrd>::ge
1212
------------------
13-
| <partial_eq_counter_without_region::Version as core::cmp::PartialOrd>::lt:
13+
| <partial_eq::Version as core::cmp::PartialOrd>::lt:
1414
| 4| 1|#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
1515
------------------
1616
5| |pub struct Version {

Diff for: src/test/run-make-fulldeps/coverage-reports-deadcode/expected_show_coverage_counters.various_conditions.txt renamed to src/test/run-make-fulldeps/coverage-reports-deadcode/expected_show_coverage_counters.conditions.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Counter in file 0 62:10 -> 62:11, #48
6767
Counter in file 0 63:9 -> 63:23, #10
6868
Counter in file 0 65:9 -> 65:15, #6
6969
Counter in file 0 67:1 -> 67:2, ((#9 + #10) + (((#6 + #7) + #8) + (((#2 + 0) - #3) - #5)))
70-
Emitting segments for file: ../coverage/various_conditions.rs
70+
Emitting segments for file: ../coverage/conditions.rs
7171
Combined regions:
7272
4:9 -> 4:26 (count=1)
7373
5:8 -> 5:12 (count=1)

Diff for: src/test/run-make-fulldeps/coverage-reports-deadcode/expected_show_coverage_counters.loops_and_branches.txt renamed to src/test/run-make-fulldeps/coverage-reports-deadcode/expected_show_coverage_counters.loops_branches.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Counter in file 0 17:10 -> 17:11, #3
77
Counter in file 0 18:9 -> 18:15, (#3 + 0)
88
Counter in file 0 19:5 -> 19:6, (#4 + (#3 + 0))
99
Counter in file 0 22:11 -> 25:2, #1
10-
Emitting segments for file: ../coverage/loops_and_branches.rs
10+
Emitting segments for file: ../coverage/loops_branches.rs
1111
Combined regions:
1212
10:12 -> 10:16 (count=1)
1313
11:16 -> 11:21 (count=1)
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Counter in file 0 8:5 -> 8:17, #1
2323
Counter in file 0 4:39 -> 4:40, #1
2424
Counter in file 0 4:48 -> 4:49, (#1 + 0)
2525
Counter in file 0 7:5 -> 7:6, #1
26-
Emitting segments for file: ../coverage/partial_eq_counter_without_region.rs
26+
Emitting segments for file: ../coverage/partial_eq.rs
2727
Combined regions:
2828
4:17 -> 4:22 (count=2)
2929
4:39 -> 4:40 (count=1)
@@ -43,7 +43,7 @@ Segment at 13:9 (count = 2), RegionEntry
4343
Segment at 18:6 (count = 0), Skipped
4444
Segment at 21:11 (count = 1), RegionEntry
4545
Segment at 26:2 (count = 0), Skipped
46-
Emitting segments for function: _RNvXs0_Cs4fqI2P2rA04_33partial_eq_counter_without_regionNtB5_7VersionNtNtCs7f2nZg1zwMz_4core3cmp10PartialOrd2ltB5_
46+
Emitting segments for function: _RNvXs0_Cs4fqI2P2rA04_10partial_eqNtB5_7VersionNtNtCs7f2nZg1zwMz_4core3cmp10PartialOrd2ltB5_
4747
Combined regions:
4848
4:39 -> 4:40 (count=1)
4949
4:48 -> 4:49 (count=1)

Diff for: src/test/run-make-fulldeps/coverage-reports-deadcode/expected_show_coverage_counters.tight_infinite_loop.txt renamed to src/test/run-make-fulldeps/coverage-reports-deadcode/expected_show_coverage_counters.tight_inf_loop.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Counter in file 0 2:8 -> 2:13, #1
22
Counter in file 0 5:1 -> 5:2, (#1 - #2)
3-
Emitting segments for file: ../coverage/tight_infinite_loop.rs
3+
Emitting segments for file: ../coverage/tight_inf_loop.rs
44
Combined regions:
55
2:8 -> 2:13 (count=1)
66
5:1 -> 5:2 (count=1)

Diff for: src/test/run-make-fulldeps/coverage-reports-base/expected_show_coverage_counters.while_early_return.txt renamed to src/test/run-make-fulldeps/coverage-reports-deadcode/expected_show_coverage_counters.while_early_ret.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Counter in file 0 26:21 -> 26:27, #5
77
Counter in file 0 30:9 -> 32:10, #2
88
Counter in file 0 35:5 -> 35:11, #3
99
Counter in file 0 36:1 -> 36:2, ((#4 + #5) + #3)
10-
Emitting segments for file: ../coverage/while_early_return.rs
10+
Emitting segments for file: ../coverage/while_early_ret.rs
1111
Combined regions:
1212
5:9 -> 5:27 (count=1)
1313
7:9 -> 9:10 (count=7)
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!--
33
44
Preview this file as rendered HTML from the github source at:
5-
https://htmlpreview.github.io/?https://github.com/rust-lang/rust/blob/master/src/test/run-make-fulldeps/coverage-spanview-base/expected_mir_dump.various_conditions/various_conditions.main.-------.InstrumentCoverage.0.html
5+
https://htmlpreview.github.io/?https://github.com/rust-lang/rust/blob/master/src/test/run-make-fulldeps/coverage-spanview-base/expected_mir_dump.conditions/conditions.main.-------.InstrumentCoverage.0.html
66
77
For revisions in Pull Requests (PR):
88
* Replace "rust-lang" with the github PR author
@@ -11,7 +11,7 @@
1111
-->
1212
<html>
1313
<head>
14-
<title>various_conditions.main - Coverage Spans</title>
14+
<title>conditions.main - Coverage Spans</title>
1515
<style>
1616
.line {
1717
counter-increment: line;
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!--
33
44
Preview this file as rendered HTML from the github source at:
5-
https://htmlpreview.github.io/?https://github.com/rust-lang/rust/blob/master/src/test/run-make-fulldeps/coverage-spanview-base/expected_mir_dump.loops_and_branches/loops_and_branches.main.-------.InstrumentCoverage.0.html
5+
https://htmlpreview.github.io/?https://github.com/rust-lang/rust/blob/master/src/test/run-make-fulldeps/coverage-spanview-base/expected_mir_dump.loops_branches/loops_branches.main.-------.InstrumentCoverage.0.html
66
77
For revisions in Pull Requests (PR):
88
* Replace "rust-lang" with the github PR author
@@ -11,7 +11,7 @@
1111
-->
1212
<html>
1313
<head>
14-
<title>loops_and_branches.main - Coverage Spans</title>
14+
<title>loops_branches.main - Coverage Spans</title>
1515
<style>
1616
.line {
1717
counter-increment: line;
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!--
33
44
Preview this file as rendered HTML from the github source at:
5-
https://htmlpreview.github.io/?https://github.com/rust-lang/rust/blob/master/src/test/run-make-fulldeps/coverage-spanview-base/expected_mir_dump.loops_and_branches/loops_and_branches.%7Bimpl%230%7D-fmt.-------.InstrumentCoverage.0.html
5+
https://htmlpreview.github.io/?https://github.com/rust-lang/rust/blob/master/src/test/run-make-fulldeps/coverage-spanview-base/expected_mir_dump.loops_branches/loops_branches.%7Bimpl%230%7D-fmt.-------.InstrumentCoverage.0.html
66
77
For revisions in Pull Requests (PR):
88
* Replace "rust-lang" with the github PR author
@@ -11,7 +11,7 @@
1111
-->
1212
<html>
1313
<head>
14-
<title>loops_and_branches.{impl#0}-fmt - Coverage Spans</title>
14+
<title>loops_branches.{impl#0}-fmt - Coverage Spans</title>
1515
<style>
1616
.line {
1717
counter-increment: line;
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!--
33
44
Preview this file as rendered HTML from the github source at:
5-
https://htmlpreview.github.io/?https://github.com/rust-lang/rust/blob/master/src/test/run-make-fulldeps/coverage-spanview-base/expected_mir_dump.partial_eq_counter_without_region/partial_eq_counter_without_region.main.-------.InstrumentCoverage.0.html
5+
https://htmlpreview.github.io/?https://github.com/rust-lang/rust/blob/master/src/test/run-make-fulldeps/coverage-spanview-base/expected_mir_dump.partial_eq/partial_eq.main.-------.InstrumentCoverage.0.html
66
77
For revisions in Pull Requests (PR):
88
* Replace "rust-lang" with the github PR author
@@ -11,7 +11,7 @@
1111
-->
1212
<html>
1313
<head>
14-
<title>partial_eq_counter_without_region.main - Coverage Spans</title>
14+
<title>partial_eq.main - Coverage Spans</title>
1515
<style>
1616
.line {
1717
counter-increment: line;
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!--
33
44
Preview this file as rendered HTML from the github source at:
5-
https://htmlpreview.github.io/?https://github.com/rust-lang/rust/blob/master/src/test/run-make-fulldeps/coverage-spanview-base/expected_mir_dump.partial_eq_counter_without_region/partial_eq_counter_without_region.%7Bimpl%230%7D-new.-------.InstrumentCoverage.0.html
5+
https://htmlpreview.github.io/?https://github.com/rust-lang/rust/blob/master/src/test/run-make-fulldeps/coverage-spanview-base/expected_mir_dump.partial_eq/partial_eq.%7Bimpl%230%7D-new.-------.InstrumentCoverage.0.html
66
77
For revisions in Pull Requests (PR):
88
* Replace "rust-lang" with the github PR author
@@ -11,7 +11,7 @@
1111
-->
1212
<html>
1313
<head>
14-
<title>partial_eq_counter_without_region.{impl#0}-new - Coverage Spans</title>
14+
<title>partial_eq.{impl#0}-new - Coverage Spans</title>
1515
<style>
1616
.line {
1717
counter-increment: line;
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!--
33
44
Preview this file as rendered HTML from the github source at:
5-
https://htmlpreview.github.io/?https://github.com/rust-lang/rust/blob/master/src/test/run-make-fulldeps/coverage-spanview-base/expected_mir_dump.partial_eq_counter_without_region/partial_eq_counter_without_region.%7Bimpl%231%7D-cmp.-------.InstrumentCoverage.0.html
5+
https://htmlpreview.github.io/?https://github.com/rust-lang/rust/blob/master/src/test/run-make-fulldeps/coverage-spanview-base/expected_mir_dump.partial_eq/partial_eq.%7Bimpl%231%7D-cmp.-------.InstrumentCoverage.0.html
66
77
For revisions in Pull Requests (PR):
88
* Replace "rust-lang" with the github PR author
@@ -11,7 +11,7 @@
1111
-->
1212
<html>
1313
<head>
14-
<title>partial_eq_counter_without_region.{impl#1}-cmp - Coverage Spans</title>
14+
<title>partial_eq.{impl#1}-cmp - Coverage Spans</title>
1515
<style>
1616
.line {
1717
counter-increment: line;

0 commit comments

Comments
 (0)