]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/coverage-experiments/Cargo.toml
explained lang_item function body (count_code_region)
[rust.git] / src / test / codegen / coverage-experiments / Cargo.toml
1 [workspace]
2
3 [package]
4 name = "coverage_experiments"
5 version = "0.1.0"
6 license = "BSD-3-Clause"
7 authors = ["rust-fuchsia@fuchsia.com"]
8 edition = "2018"
9
10 [[bin]]
11
12 name = "coverage_injection_test"
13 path = "src/coverage_injection_test.rs"
14
15 [[bin]]
16
17 name = "coverage_injection_test2"
18 path = "src/coverage_injection_test2.rs"
19
20 [[bin]]
21
22 name = "while"
23 path = "src/while.rs"
24
25 [[bin]]
26
27 name = "while_clean"
28 path = "src/while_clean.rs"
29
30 [[bin]]
31
32 name = "while_early_return"
33 path = "src/while_early_return.rs"
34
35 [[bin]]
36
37 name = "if_with_comments"
38 path = "src/if_with_comments.rs"
39
40 [[bin]]
41
42 name = "if"
43 path = "src/if.rs"
44
45 [[bin]]
46
47 name = "increment_intrinsic"
48 path = "src/increment_intrinsic.rs"
49
50 [[bin]]
51
52 name = "just_main"
53 path = "src/just_main.rs"
54
55 [[bin]]
56
57 name = "lazy_boolean"
58 path = "src/lazy_boolean.rs"
59
60 [[bin]]
61
62 name = "match"
63 path = "src/match.rs"
64
65 [[bin]]
66
67 name = "match_without_increment"
68 path = "src/match_without_increment.rs" # identical to -Zunpretty=hir output
69
70 [[bin]]
71
72 name = "match_with_increment"
73 path = "src/match_with_increment.rs"
74
75 [[bin]]
76
77 name = "match_with_increment_alt"
78 path = "src/match_with_increment_alt.rs"
79
80 [[bin]]
81
82 name = "loop_break_value"
83 path = "src/loop_break_value.rs"
84
85 [[bin]]
86
87 name = "for_with_comments"
88 path = "src/for_with_comments.rs"
89
90 [[bin]]
91
92 name = "for"
93 path = "src/for.rs"
94
95 [[bin]]
96
97 name = "drop_trait"
98 path = "src/drop_trait.rs"
99
100 #[dependencies] # Should not need to manually add coverage dependencies
101 #version = "0.1.0"
102 #path = "../__builtin" # for mod __builtin::coverage
103