Codebase list rust-daemonize / 8e221d7
Package grcov 0.8.18 from crates.io using debcargo 2.6.0 Sylvestre Ledru 10 months ago
8 changed file(s) with 53 addition(s) and 43 deletion(s). Raw diff Collapse all Expand all
0 rust-grcov (0.8.18-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Package grcov 0.8.18 from crates.io using debcargo 2.6.0
3
4 -- Sylvestre Ledru <sylvestre@debian.org> Sun, 09 Jul 2023 09:44:26 +0200
5
06 rust-grcov (0.8.12-3) unstable; urgency=medium
17
28 * Team upload
11 ===================================================================
22 --- grcov.orig/Cargo.toml
33 +++ grcov/Cargo.toml
4 @@ -143,12 +143,10 @@ deflate-miniz = ["zip/deflate-miniz"]
4 @@ -152,12 +152,10 @@ deflate-miniz = ["zip/deflate-miniz"]
55 deflate-zlib = ["zip/deflate-zlib"]
66 demangle-no-swift = [
77 "symbolic-demangle/cpp",
0 --- a/Cargo.toml
1 +++ b/Cargo.toml
2 @@ -145,11 +145,6 @@ demangle-no-swift = [
0 Index: grcov/Cargo.toml
1 ===================================================================
2 --- grcov.orig/Cargo.toml
3 +++ grcov/Cargo.toml
4 @@ -154,11 +154,6 @@ demangle-no-swift = [
35 "symbolic-demangle/cpp",
46 "symbolic-demangle/rust",
57 ]
0 --- a/Cargo.toml
1 +++ b/Cargo.toml
2 @@ -145,8 +145,3 @@ demangle-no-swift = [
0 Index: grcov/Cargo.toml
1 ===================================================================
2 --- grcov.orig/Cargo.toml
3 +++ grcov/Cargo.toml
4 @@ -154,8 +154,3 @@ demangle-no-swift = [
35 "symbolic-demangle/cpp",
46 "symbolic-demangle/rust",
57 ]
5050 ===================================================================
5151 --- grcov.orig/src/output.rs
5252 +++ grcov/src/output.rs
53 @@ -680,7 +680,7 @@ mod tests {
53 @@ -758,7 +758,7 @@ mod tests {
5454 assert!(results.contains("FN:3,hello_world\n"));
5555 }
5656
5959 fn test_covdir() {
6060 let tmp_dir = tempfile::tempdir().expect("Failed to create temporary directory");
6161 let file_name = "test_covdir.json";
62 @@ -733,7 +733,7 @@ mod tests {
62 @@ -810,7 +810,7 @@ mod tests {
6363 let expected: Value = serde_json::from_str(&read_file(&expected_path)).unwrap();
6464
6565 assert_eq!(results, expected);
7272 ===================================================================
7373 --- grcov.orig/src/parser.rs
7474 +++ grcov/src/parser.rs
75 @@ -820,7 +820,7 @@ mod tests {
75 @@ -829,7 +829,7 @@ mod tests {
7676 assert_eq!(l, "".as_bytes().to_vec());
7777 }
7878
8181 fn test_lcov_parser() {
8282 let mut f = File::open("./test/prova.info").expect("Failed to open lcov file");
8383 let mut buf = Vec::new();
84 @@ -903,9 +903,9 @@ mod tests {
84 @@ -912,9 +912,9 @@ mod tests {
8585 let func = result.functions.get("logConsoleMessage").unwrap();
8686 assert_eq!(func.start, 21);
8787 assert!(!func.executed);
9393 fn test_lcov_parser_with_branch_parsing() {
9494 // Parse the same file, but with branch parsing enabled.
9595 let mut f = File::open("./test/prova.info").expect("Failed to open lcov file");
96 @@ -1922,9 +1922,9 @@ mod tests {
96 @@ -1931,9 +1931,9 @@ mod tests {
9797 .unwrap();
9898 assert_eq!(func.start, 188);
9999 assert!(!func.executed);
105105 fn test_parser_jacoco_xml_basic() {
106106 let mut lines: BTreeMap<u32, u64> = BTreeMap::new();
107107 lines.insert(1, 0);
108 @@ -2026,5 +2026,5 @@ mod tests {
108 @@ -2035,5 +2035,5 @@ mod tests {
109109 .expect("Failed to open xml file");
110110 let file = BufReader::new(&f);
111111 let _results = parse_jacoco_xml_report(file).unwrap();
116116 ===================================================================
117117 --- grcov.orig/src/path_rewriting.rs
118118 +++ grcov/src/path_rewriting.rs
119 @@ -560,7 +560,7 @@ mod tests {
119 @@ -556,7 +556,7 @@ mod tests {
120120 assert_eq!(count, 1);
121121 }
122122
125125 #[test]
126126 fn test_rewrite_paths_ignore_non_existing_files() {
127127 let mut result_map: CovResultMap = FxHashMap::default();
128 @@ -618,7 +618,7 @@ mod tests {
128 @@ -614,7 +614,7 @@ mod tests {
129129 assert_eq!(result, empty_result!());
130130 }
131131 assert_eq!(count, 1);
134134
135135 #[cfg(unix)]
136136 #[test]
137 @@ -936,7 +936,7 @@ mod tests {
137 @@ -933,7 +933,7 @@ mod tests {
138138 .any(|_| false);
139139 }
140140
143143 #[test]
144144 fn test_rewrite_paths_rewrite_path_using_absolute_source_directory() {
145145 let mut result_map: CovResultMap = FxHashMap::default();
146 @@ -1044,9 +1044,9 @@ mod tests {
146 @@ -1041,9 +1041,9 @@ mod tests {
147147 assert_eq!(result, empty_result!());
148148 }
149149 assert_eq!(count, 1);
155155 #[test]
156156 fn test_rewrite_paths_rewrite_path_for_java_and_rust() {
157157 let mut result_map: CovResultMap = FxHashMap::default();
158 @@ -1152,9 +1152,9 @@ mod tests {
158 @@ -1147,9 +1147,9 @@ mod tests {
159159 assert_eq!(result, empty_result!());
160160 }
161161 assert_eq!(count, 1);
167167 #[test]
168168 fn test_rewrite_paths_rewrite_path_and_remove_prefix() {
169169 let mut result_map: CovResultMap = FxHashMap::default();
170 @@ -1213,7 +1213,7 @@ mod tests {
170 @@ -1208,7 +1208,7 @@ mod tests {
171171 assert_eq!(result, empty_result!());
172172 }
173173 assert_eq!(count, 1);
176176
177177 #[cfg(unix)]
178178 #[test]
179 @@ -1267,7 +1267,7 @@ mod tests {
179 @@ -1262,7 +1262,7 @@ mod tests {
180180 assert_eq!(count, 1);
181181 }
182182
185185 #[test]
186186 fn test_rewrite_paths_rewrite_path_using_mapping_and_ignore_non_existing() {
187187 let mut result_map: CovResultMap = FxHashMap::default();
188 @@ -1295,7 +1295,7 @@ mod tests {
188 @@ -1290,7 +1290,7 @@ mod tests {
189189 assert_eq!(result, empty_result!());
190190 }
191191 assert_eq!(count, 1);
194194
195195 #[cfg(windows)]
196196 #[test]
197 @@ -1327,7 +1327,7 @@ mod tests {
197 @@ -1322,7 +1322,7 @@ mod tests {
198198 assert_eq!(count, 1);
199199 }
200200
203203 #[test]
204204 fn test_rewrite_paths_rewrite_path_using_mapping_and_remove_prefix() {
205205 let mut result_map: CovResultMap = FxHashMap::default();
206 @@ -1475,9 +1475,9 @@ mod tests {
206 @@ -1470,9 +1470,9 @@ mod tests {
207207 assert_eq!(result, empty_result!());
208208 }
209209 assert_eq!(count, 1);
215215 #[test]
216216 fn test_rewrite_paths_rewrite_path_using_mapping_and_source_directory_and_remove_prefix() {
217217 let mut result_map: CovResultMap = FxHashMap::default();
218 @@ -1535,7 +1535,7 @@ mod tests {
218 @@ -1530,7 +1530,7 @@ mod tests {
219219 assert_eq!(result, empty_result!());
220220 }
221221 assert_eq!(count, 1);
224224
225225 #[test]
226226 fn test_rewrite_paths_only_covered() {
227 @@ -1624,7 +1624,7 @@ mod tests {
227 @@ -1619,7 +1619,7 @@ mod tests {
228228 assert!(!has_no_parent("/foo/bar.oof"));
229229 }
230230
233233 #[test]
234234 fn test_rewrite_paths_filter_lines_and_branches() {
235235 let mut result_map: CovResultMap = FxHashMap::default();
236 @@ -1708,5 +1708,5 @@ mod tests {
236 @@ -1703,5 +1703,5 @@ mod tests {
237237 }
238238 }
239239 assert_eq!(count, 1);
11 ===================================================================
22 --- grcov.orig/Cargo.toml
33 +++ grcov/Cargo.toml
4 @@ -73,19 +73,19 @@ version = "0.10"
5 version = "1.13"
4 @@ -85,19 +85,19 @@ version = "1.15"
5 version = "1.17"
66
77 [dependencies.quick-xml]
8 -version = "0.25"
9 +version = "0.26"
8 -version = "0.28"
9 +version = "0"
1010
1111 [dependencies.rayon]
12 -version = "1.5"
13 +version = "^1"
12 -version = "1.7"
13 +version = "1"
1414
1515 [dependencies.regex]
16 -version = "1.5"
17 +version = "1.3"
16 -version = "1.7"
17 +version = "1"
1818
1919 [dependencies.rustc-hash]
2020 version = "1.1"
2121
2222 [dependencies.semver]
2323 -version = "1.0"
24 +version = "0.9"
24 +version = "0"
2525
2626 [dependencies.serde]
2727 version = "1.0"
00 fix-deps.diff
1 quick-xml.diff
1 #quick-xml.diff
22 disable-tests-missing-testdata.diff
33 disable-msvc.diff
44 disable-swift.diff
0 Test-Command: /usr/share/cargo/bin/cargo-auto-test grcov 0.8.12 --all-targets --all-features
0 Test-Command: /usr/share/cargo/bin/cargo-auto-test grcov 0.8.18 --all-targets --all-features
11 Features: test-name=rust-grcov:@
22 Depends: dh-cargo (>= 18), librust-pretty-assertions-1+default-dev (>= 1.2-~~), @
33 Restrictions: allow-stderr, skip-not-installable, flaky
44
5 Test-Command: /usr/share/cargo/bin/cargo-auto-test grcov 0.8.12 --all-targets
5 Test-Command: /usr/share/cargo/bin/cargo-auto-test grcov 0.8.18 --all-targets
66 Features: test-name=librust-grcov-dev:default
77 Depends: dh-cargo (>= 18), librust-pretty-assertions-1+default-dev (>= 1.2-~~), @
88 Restrictions: allow-stderr, skip-not-installable, flaky
99
10 Test-Command: /usr/share/cargo/bin/cargo-auto-test grcov 0.8.12 --all-targets --no-default-features --features deflate
10 Test-Command: /usr/share/cargo/bin/cargo-auto-test grcov 0.8.18 --all-targets --no-default-features --features deflate
1111 Features: test-name=librust-grcov-dev:deflate
1212 Depends: dh-cargo (>= 18), librust-pretty-assertions-1+default-dev (>= 1.2-~~), @
1313 Restrictions: allow-stderr, skip-not-installable, flaky
1414
15 Test-Command: /usr/share/cargo/bin/cargo-auto-test grcov 0.8.12 --all-targets --no-default-features --features deflate-miniz
15 Test-Command: /usr/share/cargo/bin/cargo-auto-test grcov 0.8.18 --all-targets --no-default-features --features deflate-miniz
1616 Features: test-name=librust-grcov-dev:deflate-miniz
1717 Depends: dh-cargo (>= 18), librust-pretty-assertions-1+default-dev (>= 1.2-~~), @
1818 Restrictions: allow-stderr, skip-not-installable, flaky
1919
20 Test-Command: /usr/share/cargo/bin/cargo-auto-test grcov 0.8.12 --all-targets --no-default-features --features deflate-zlib
20 Test-Command: /usr/share/cargo/bin/cargo-auto-test grcov 0.8.18 --all-targets --no-default-features --features deflate-zlib
2121 Features: test-name=librust-grcov-dev:deflate-zlib
2222 Depends: dh-cargo (>= 18), librust-pretty-assertions-1+default-dev (>= 1.2-~~), @
2323 Restrictions: allow-stderr, skip-not-installable, flaky
2424
25 Test-Command: /usr/share/cargo/bin/cargo-auto-test grcov 0.8.12 --all-targets --no-default-features --features demangle-no-swift
25 Test-Command: /usr/share/cargo/bin/cargo-auto-test grcov 0.8.18 --all-targets --no-default-features --features demangle-no-swift
2626 Features: test-name=librust-grcov-dev:demangle-no-swift
2727 Depends: dh-cargo (>= 18), librust-pretty-assertions-1+default-dev (>= 1.2-~~), @
2828 Restrictions: allow-stderr, skip-not-installable, flaky
2929
30 Test-Command: /usr/share/cargo/bin/cargo-auto-test grcov 0.8.12 --all-targets --no-default-features
30 Test-Command: /usr/share/cargo/bin/cargo-auto-test grcov 0.8.18 --all-targets --no-default-features
3131 Features: test-name=librust-grcov-dev:
3232 Depends: dh-cargo (>= 18), librust-pretty-assertions-1+default-dev (>= 1.2-~~), @
3333 Restrictions: allow-stderr, skip-not-installable, flaky