File: disable-tests-missing-testdata.diff

package info (click to toggle)
rust-grcov 0.10.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,296 kB
  • sloc: makefile: 13
file content (700 lines) | stat: -rw-r--r-- 21,365 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
Index: grcov/src/lib.rs
===================================================================
--- grcov.orig/src/lib.rs
+++ grcov/src/lib.rs
@@ -437,6 +437,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_merge_relative_path() {
         let mut f = File::open("./test/relative_path/relative_path.info")
             .expect("Failed to open lcov file");
@@ -471,6 +472,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_ignore_relative_path() {
         let mut f = File::open("./test/relative_path/relative_path.info")
             .expect("Failed to open lcov file");
Index: grcov/src/parser.rs
===================================================================
--- grcov.orig/src/parser.rs
+++ grcov/src/parser.rs
@@ -1018,6 +1018,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_lcov_parser() {
         let mut f = File::open("./test/prova.info").expect("Failed to open lcov file");
         let mut buf = Vec::new();
@@ -1103,6 +1104,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_lcov_parser_with_branch_parsing() {
         // Parse the same file, but with branch parsing enabled.
         let mut f = File::open("./test/prova.info").expect("Failed to open lcov file");
@@ -1202,6 +1204,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_lcov_parser_fn_with_commas() {
         let mut f =
             File::open("./test/prova_fn_with_commas.info").expect("Failed to open lcov file");
@@ -1294,6 +1297,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_lcov_parser_empty_line() {
         let mut f = File::open("./test/empty_line.info").expect("Failed to open lcov file");
         let mut buf = Vec::new();
@@ -1386,6 +1390,7 @@ mod tests {
 
     #[allow(non_snake_case)]
     #[test]
+    #[ignore]
     fn test_lcov_parser_invalid_DA_record() {
         let mut f = File::open("./test/invalid_DA_record.info").expect("Failed to open lcov file");
         let mut buf = Vec::new();
@@ -1396,6 +1401,7 @@ mod tests {
 
     #[allow(non_snake_case)]
     #[test]
+    #[ignore]
     fn test_lcov_parser_ignoring_invalid_DA_record() {
         let mut f = File::open("./test/invalid_DA_record.info").expect("Failed to open lcov file");
         let mut buf = Vec::new();
@@ -1464,6 +1470,7 @@ TN:http_3a_2f_2fweb_2dplatform_2etest_3a
     }
 
     #[test]
+    #[ignore]
     fn test_parser() {
         let results = parse_gcov(Path::new("./test/prova.gcov")).unwrap();
 
@@ -1679,6 +1686,7 @@ TN:http_3a_2f_2fweb_2dplatform_2etest_3a
     }
 
     #[test]
+    #[ignore]
     fn test_parser_gcov_with_negative_counts() {
         let results = parse_gcov(Path::new("./test/negative_counts.gcov")).unwrap();
         assert_eq!(results.len(), 118);
@@ -1688,6 +1696,7 @@ TN:http_3a_2f_2fweb_2dplatform_2etest_3a
     }
 
     #[test]
+    #[ignore]
     fn test_parser_gcov_with_64bit_counts() {
         let results = parse_gcov(Path::new("./test/64bit_count.gcov")).unwrap();
         assert_eq!(results.len(), 46);
@@ -1930,6 +1939,7 @@ TN:http_3a_2f_2fweb_2dplatform_2etest_3a
     }
 
     #[test]
+    #[ignore]
     fn test_parser_gcov_with_branches() {
         let results = parse_gcov(Path::new("./test/intermediate_with_branches.gcov")).unwrap();
         assert_eq!(results.len(), 1);
@@ -1968,6 +1978,7 @@ TN:http_3a_2f_2fweb_2dplatform_2etest_3a
     }
 
     #[test]
+    #[ignore]
     fn test_parser_gcov_rust_generics_with_two_parameters() {
         let results = parse_gcov(Path::new(
             "./test/rust/generics_with_two_parameters_intermediate.gcov",
@@ -2010,6 +2021,7 @@ TN:http_3a_2f_2fweb_2dplatform_2etest_3a
     }
 
     #[test]
+    #[ignore]
     fn test_parser_gcov_gz() {
         let results = parse_gcov_gz(Path::new(
             "./test/mozillavpn_serverconnection.gcno.gcov.json.gz",
@@ -2191,6 +2203,7 @@ TN:http_3a_2f_2fweb_2dplatform_2etest_3a
     }
 
     #[test]
+    #[ignore]
     fn test_parser_jacoco_xml_basic() {
         let mut lines: BTreeMap<u32, u64> = BTreeMap::new();
         lines.insert(1, 0);
@@ -2230,6 +2243,7 @@ TN:http_3a_2f_2fweb_2dplatform_2etest_3a
     }
 
     #[test]
+    #[ignore]
     fn test_parser_jacoco_xml_inner_classes() {
         let mut lines: BTreeMap<u32, u64> = BTreeMap::new();
         for i in &[5, 10, 14, 15, 18, 22, 23, 25, 27, 31, 34, 37, 44, 49] {
@@ -2277,6 +2291,7 @@ TN:http_3a_2f_2fweb_2dplatform_2etest_3a
     }
 
     #[test]
+    #[ignore]
     fn test_parser_jacoco_kotlin() {
         let mut lines: BTreeMap<u32, u64> = BTreeMap::new();
         for i in &[
@@ -2351,6 +2366,7 @@ TN:http_3a_2f_2fweb_2dplatform_2etest_3a
     }
 
     #[test]
+    #[ignore]
     fn parse_go() {
         let mut aggregator_lines: BTreeMap<u32, u64> = BTreeMap::new();
         let mut decoder_lines: BTreeMap<u32, u64> = BTreeMap::new();
Index: grcov/src/reader.rs
===================================================================
--- grcov.orig/src/reader.rs
+++ grcov/src/reader.rs
@@ -1243,6 +1243,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_reader_gcno() {
         let mut gcno = Gcno::new();
         from_path(&mut gcno, FileType::Gcno, "test/llvm/reader.gcno");
@@ -1253,6 +1254,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_reader_gcno_gcda() {
         let mut gcno = Gcno::new();
         from_path(&mut gcno, FileType::Gcno, "test/llvm/reader.gcno");
@@ -1265,6 +1267,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_reader_gcno_gcda_gcc6() {
         let mut gcno = Gcno::new();
         from_path(&mut gcno, FileType::Gcno, "test/reader_gcc-6.gcno");
@@ -1277,6 +1280,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_reader_gcno_gcda_gcc7() {
         let mut gcno = Gcno::new();
         from_path(&mut gcno, FileType::Gcno, "test/reader_gcc-7.gcno");
@@ -1289,6 +1293,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_reader_gcno_gcda_gcc8() {
         let mut gcno = Gcno::new();
         from_path(&mut gcno, FileType::Gcno, "test/reader_gcc-8.gcno");
@@ -1301,6 +1306,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_reader_gcno_gcda_gcc9() {
         let mut gcno = Gcno::new();
         from_path(&mut gcno, FileType::Gcno, "test/reader_gcc-9.gcno");
@@ -1313,6 +1319,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_reader_gcno_gcda_gcc10() {
         let mut gcno = Gcno::new();
         from_path(&mut gcno, FileType::Gcno, "test/reader_gcc-10.gcno");
@@ -1325,6 +1332,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_reader_gcno_gcda_gcda() {
         let mut gcno = Gcno::new();
         from_path(&mut gcno, FileType::Gcno, "test/llvm/reader.gcno");
@@ -1339,6 +1347,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_reader_gcno_counter() {
         let mut gcno = Gcno::new();
         from_path(&mut gcno, FileType::Gcno, "test/llvm/reader.gcno");
@@ -1356,6 +1365,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_reader_gcno_gcda_counter() {
         let mut gcno = Gcno::new();
         from_path(&mut gcno, FileType::Gcno, "test/llvm/reader.gcno");
@@ -1374,6 +1384,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_reader_gcno_gcda_gcda_counter() {
         let mut gcno = Gcno::new();
         from_path(&mut gcno, FileType::Gcno, "test/llvm/reader.gcno");
@@ -1394,6 +1405,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_reader_finalize_file() {
         let mut gcno = Gcno::new();
         from_path(&mut gcno, FileType::Gcno, "test/llvm/file.gcno");
@@ -1425,6 +1437,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_reader_finalize_file_branch() {
         let mut gcno = Gcno::new();
         from_path(&mut gcno, FileType::Gcno, "test/llvm/file_branch.gcno");
Index: grcov/src/producer.rs
===================================================================
--- grcov.orig/src/producer.rs
+++ grcov/src/producer.rs
@@ -701,6 +701,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_dir_producer() {
         let (sender, receiver) = unbounded();
 
@@ -828,6 +829,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_dir_producer_multiple_directories() {
         let (sender, receiver) = unbounded();
 
@@ -851,6 +853,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_dir_producer_directory_with_gcno_symlinks() {
         let (sender, receiver) = unbounded();
 
@@ -871,6 +874,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_dir_producer_directory_with_no_gcda() {
         let (sender, receiver) = unbounded();
 
@@ -894,6 +898,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_dir_producer_directory_with_no_gcda_ignore_orphan_gcno() {
         let (sender, receiver) = unbounded();
 
@@ -914,6 +919,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_zip_producer_with_gcda_dir() {
         let (sender, receiver) = unbounded();
 
@@ -964,6 +970,7 @@ mod tests {
 
     // Test extracting multiple gcda archives.
     #[test]
+    #[ignore]
     fn test_zip_producer_multiple_gcda_archives() {
         let (sender, receiver) = unbounded();
 
@@ -1024,6 +1031,7 @@ mod tests {
 
     // Test extracting gcno with no path mapping.
     #[test]
+    #[ignore]
     fn test_zip_producer_gcno_with_no_path_mapping() {
         let (sender, receiver) = unbounded();
 
@@ -1065,6 +1073,7 @@ mod tests {
 
     // Test calling zip_producer with a different order of zip files.
     #[test]
+    #[ignore]
     fn test_zip_producer_different_order_of_zip_files() {
         let (sender, receiver) = unbounded();
 
@@ -1115,6 +1124,7 @@ mod tests {
 
     // Test extracting profraw files.
     #[test]
+    #[ignore]
     fn test_zip_producer_profraw_files() {
         let (sender, receiver) = unbounded();
 
@@ -1141,6 +1151,7 @@ mod tests {
 
     // Test extracting info files.
     #[test]
+    #[ignore]
     fn test_zip_producer_info_files() {
         let (sender, receiver) = unbounded();
 
@@ -1174,6 +1185,7 @@ mod tests {
 
     // Test extracting jacoco report XML files.
     #[test]
+    #[ignore]
     fn test_zip_producer_jacoco_xml_files() {
         let (sender, receiver) = unbounded();
 
@@ -1205,6 +1217,7 @@ mod tests {
 
     // Test extracting both jacoco xml and info files.
     #[test]
+    #[ignore]
     fn test_zip_producer_both_info_and_jacoco_xml() {
         let (sender, receiver) = unbounded();
 
@@ -1250,6 +1263,7 @@ mod tests {
 
     // Test extracting both info and gcno/gcda files.
     #[test]
+    #[ignore]
     fn test_zip_producer_both_info_and_gcnogcda_files() {
         let (sender, receiver) = unbounded();
 
@@ -1304,6 +1318,7 @@ mod tests {
 
     // Test extracting gcno with no associated gcda.
     #[test]
+    #[ignore]
     fn test_zip_producer_gcno_with_no_associated_gcda() {
         let (sender, receiver) = unbounded();
 
@@ -1328,6 +1343,7 @@ mod tests {
 
     // Test extracting gcno with an associated gcda file in only one zip file.
     #[test]
+    #[ignore]
     fn test_zip_producer_gcno_with_associated_gcda_in_only_one_archive() {
         let (sender, receiver) = unbounded();
 
@@ -1354,6 +1370,7 @@ mod tests {
     // Test passing a gcda archive with no gcno archive makes zip_producer fail.
     #[test]
     #[should_panic]
+    #[ignore]
     fn test_zip_producer_with_gcda_archive_and_no_gcno_archive() {
         let (sender, _) = unbounded();
 
@@ -1370,6 +1387,7 @@ mod tests {
 
     // Test extracting gcno/gcda archives, where a gcno file exist with no matching gcda file.
     #[test]
+    #[ignore]
     fn test_zip_producer_no_matching_gcno() {
         let (sender, receiver) = unbounded();
 
@@ -1408,6 +1426,7 @@ mod tests {
     // Test extracting gcno/gcda archives, where a gcno file exist with no matching gcda file.
     // The gcno file should be produced only once, not twice.
     #[test]
+    #[ignore]
     fn test_zip_producer_no_matching_gcno_two_gcda_archives() {
         let (sender, receiver) = unbounded();
 
@@ -1458,6 +1477,7 @@ mod tests {
 
     // Test extracting gcno/gcda archives, where a gcno file exist with no matching gcda file and ignore orphan gcno files.
     #[test]
+    #[ignore]
     fn test_zip_producer_no_matching_gcno_ignore_orphan_gcno() {
         let (sender, receiver) = unbounded();
 
@@ -1488,6 +1508,7 @@ mod tests {
 
     // Test extracting gcno/gcda archives, where a gcno file exist with no matching gcda file and ignore orphan gcno files.
     #[test]
+    #[ignore]
     fn test_zip_producer_no_matching_gcno_two_gcda_archives_ignore_orphan_gcno() {
         let (sender, receiver) = unbounded();
 
@@ -1530,6 +1551,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_zip_producer_llvm_buffers() {
         let (sender, receiver) = unbounded();
 
@@ -1587,6 +1609,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_plain_producer() {
         let (sender, receiver) = unbounded();
 
@@ -1618,6 +1641,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_plain_profraw_producer() {
         let (sender, receiver) = unbounded();
 
@@ -1669,6 +1693,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_jacoco_files() {
         let mut file = File::open("./test/jacoco/basic-report.xml").ok();
         assert!(
@@ -1699,6 +1724,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_info_files() {
         let mut file = File::open("./test/1494603973-2977-7.info").ok();
         assert!(
Index: grcov/src/path_rewriting.rs
===================================================================
--- grcov.orig/src/path_rewriting.rs
+++ grcov/src/path_rewriting.rs
@@ -650,6 +650,7 @@ mod tests {
 
     #[cfg(unix)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_ignore_non_existing_files() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert("tests/class/main.cpp".to_string(), empty_result!());
@@ -682,6 +683,7 @@ mod tests {
 
     #[cfg(windows)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_ignore_non_existing_files() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert("tests\\class\\main.cpp".to_string(), empty_result!());
@@ -1008,6 +1010,7 @@ mod tests {
 
     #[test]
     #[should_panic]
+    #[ignore]
     fn test_rewrite_paths_rewrite_path_using_relative_source_directory() {
         let result_map: CovResultMap = FxHashMap::default();
         rewrite_paths(
@@ -1027,6 +1030,7 @@ mod tests {
 
     #[cfg(unix)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_rewrite_path_using_absolute_source_directory() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert("java/main.java".to_string(), empty_result!());
@@ -1055,6 +1059,7 @@ mod tests {
 
     #[cfg(windows)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_rewrite_path_using_absolute_source_directory() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert("java\\main.java".to_string(), empty_result!());
@@ -1083,6 +1088,7 @@ mod tests {
 
     #[cfg(unix)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_subfolder_same_as_root() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert("test/main.rs".to_string(), empty_result!());
@@ -1110,6 +1116,7 @@ mod tests {
 
     #[cfg(windows)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_subfolder_same_as_root() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert("test\\main.rs".to_string(), empty_result!());
@@ -1137,6 +1144,7 @@ mod tests {
 
     #[cfg(unix)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_rewrite_path_for_java_and_rust() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert("java/main.java".to_string(), empty_result!());
@@ -1163,6 +1171,7 @@ mod tests {
 
     #[cfg(unix)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_rewrite_path_for_java_kotlin_and_rust() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert("kt/main.kt".to_string(), empty_result!());
@@ -1190,6 +1199,7 @@ mod tests {
 
     #[cfg(windows)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_rewrite_path_for_java_and_rust() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert("java\\main.java".to_string(), empty_result!());
@@ -1216,6 +1226,7 @@ mod tests {
 
     #[cfg(unix)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_rewrite_path_using_absolute_source_directory_and_partial_path() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert("java/main.java".to_string(), empty_result!());
@@ -1243,6 +1254,7 @@ mod tests {
 
     #[cfg(windows)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_rewrite_path_using_absolute_source_directory_and_partial_path() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert("java\\main.java".to_string(), empty_result!());
@@ -1270,6 +1282,7 @@ mod tests {
 
     #[cfg(unix)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_rewrite_path_and_remove_prefix() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert(
@@ -1301,6 +1314,7 @@ mod tests {
 
     #[cfg(windows)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_rewrite_path_and_remove_prefix() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert(
@@ -1383,6 +1397,7 @@ mod tests {
 
     #[cfg(unix)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_rewrite_path_using_mapping_and_ignore_non_existing() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert("rewritten/main.cpp".to_string(), empty_result!());
@@ -1413,6 +1428,7 @@ mod tests {
 
     #[cfg(windows)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_rewrite_path_using_mapping_and_ignore_non_existing() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert("rewritten\\main.cpp".to_string(), empty_result!());
@@ -1443,6 +1459,7 @@ mod tests {
 
     #[cfg(unix)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_rewrite_path_using_mapping_and_remove_prefix() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert(
@@ -1473,6 +1490,7 @@ mod tests {
 
     #[cfg(windows)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_rewrite_path_using_mapping_and_remove_prefix() {
         // Mapping with uppercase disk and prefix with uppercase disk.
         let mut result_map: CovResultMap = FxHashMap::default();
@@ -1593,6 +1611,7 @@ mod tests {
 
     #[cfg(unix)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_rewrite_path_using_mapping_and_source_directory_and_remove_prefix() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert(
@@ -1623,6 +1642,7 @@ mod tests {
 
     #[cfg(windows)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_rewrite_path_using_mapping_and_source_directory_and_remove_prefix() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert(
@@ -1740,6 +1760,7 @@ mod tests {
 
     #[cfg(unix)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_filter_lines_and_branches() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert("test/java/skip.java".to_string(), skipping_result!());
@@ -1784,6 +1805,7 @@ mod tests {
 
     #[cfg(windows)]
     #[test]
+    #[ignore]
     fn test_rewrite_paths_filter_lines_and_branches() {
         let mut result_map: CovResultMap = FxHashMap::default();
         result_map.insert("test\\java\\skip.java".to_string(), skipping_result!());
Index: grcov/src/output.rs
===================================================================
--- grcov.orig/src/output.rs
+++ grcov/src/output.rs
@@ -780,6 +780,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_covdir() {
         let tmp_dir = tempfile::tempdir().expect("Failed to create temporary directory");
         let file_name = "test_covdir.json";
Index: grcov/src/llvm_tools.rs
===================================================================
--- grcov.orig/src/llvm_tools.rs
+++ grcov/src/llvm_tools.rs
@@ -293,6 +293,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_wrong_binary_file() {
         let tmp_dir = setup_env_and_run_program("basic");
         let tmp_path = tmp_dir.path();
@@ -308,6 +309,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_profraws_to_lcov() {
         let tmp_dir = setup_env_and_run_program("basic");
         let tmp_path = tmp_dir.path();
@@ -328,6 +330,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_profdatas_to_lcov() {
         let tmp_dir = setup_env_and_run_program("basic");
         let tmp_path = tmp_dir.path();
@@ -361,6 +364,7 @@ mod tests {
     }
 
     #[test]
+    #[ignore]
     fn test_llvm_aggregate_profraws() {
         let tmp_dir = copy_fixture("hello_name");
         let tmp_path = tmp_dir.path();