File: skip-missing-testdata.patch

package info (click to toggle)
rust-nextest-filtering 0.18.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 348 kB
  • sloc: makefile: 2
file content (140 lines) | stat: -rw-r--r-- 4,599 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
Index: nextest-filtering/tests/match.rs
===================================================================
--- nextest-filtering.orig/tests/match.rs
+++ nextest-filtering/tests/match.rs
@@ -109,6 +109,7 @@ fn test_expr() -> TestCaseName {
 }
 
 #[test]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_expr_package_contains() {
     let graph = load_graph();
     let expr = parse("package(~_a)", &graph);
@@ -146,6 +147,7 @@ fn test_expr_package_contains() {
 }
 
 #[test]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_expr_package_equal() {
     let graph = load_graph();
     let expr = parse("package(=crate_a)", &graph);
@@ -184,6 +186,7 @@ fn test_expr_package_equal() {
 }
 
 #[test]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_expr_package_regex() {
     let graph = load_graph();
     let expr = parse("package(/crate_(a|b)/)", &graph);
@@ -222,6 +225,7 @@ fn test_expr_package_regex() {
 }
 
 #[test]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_expr_binary_id_glob() {
     let graph = load_graph();
     let expr = parse("binary_id(crate_[ab])", &graph);
@@ -261,6 +265,7 @@ fn test_expr_binary_id_glob() {
 }
 
 #[test]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_expr_deps() {
     let graph = load_graph();
     let expr = parse("deps(crate_d)", &graph);
@@ -338,6 +343,7 @@ fn test_expr_deps() {
 }
 
 #[test]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_expr_rdeps() {
     let graph = load_graph();
     let expr = parse("rdeps(crate_d)", &graph);
@@ -414,6 +420,7 @@ fn test_expr_rdeps() {
 }
 
 #[test]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_expr_with_no_matching_packages() {
     #[track_caller]
     fn assert_error(errors: &FiltersetParseErrors) {
@@ -445,6 +452,7 @@ fn test_expr_with_no_matching_packages()
 }
 
 #[test]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_expr_kind() {
     let graph = load_graph();
     let expr = parse("kind(lib)", &graph);
@@ -481,6 +489,7 @@ fn test_expr_kind() {
 }
 
 #[test]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_expr_binary() {
     let graph = load_graph();
     let expr = parse("binary(crate_f)", &graph);
@@ -525,6 +534,7 @@ fn test_expr_binary() {
 }
 
 #[test]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_expr_platform() {
     let graph = load_graph();
     let expr = parse("platform(host)", &graph);
@@ -573,6 +583,7 @@ fn test_expr_platform() {
 }
 
 #[test]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_expr_kind_partial() {
     let graph = load_graph();
     let expr = parse("kind(~tes)", &graph);
@@ -601,6 +612,7 @@ fn test_expr_kind_partial() {
 }
 
 #[test]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_expr_test() {
     let graph = load_graph();
     let expr = parse("test(parse)", &graph);
@@ -638,6 +650,7 @@ fn test_expr_test() {
 }
 
 #[test]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_expr_test_not() {
     let graph = load_graph();
     let expr = parse("not test(parse)", &graph);
@@ -668,6 +681,7 @@ fn test_expr_test_not() {
 #[test_case("test(parse) + test(run)"; "with plus")]
 #[test_case("test(parse) | test(run)"; "with pipe")]
 #[test_case("test(parse) or test(run)"; "with or")]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_expr_test_union(input: &str) {
     let graph = load_graph();
     let expr = parse(input, &graph);
@@ -705,6 +719,7 @@ fn test_expr_test_union(input: &str) {
 
 #[test_case("test(parse) - test(expr)"; "with minus")]
 #[test_case("test(parse) and not test(expr)"; "with and not")]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_expr_test_difference(input: &str) {
     let graph = load_graph();
     let expr = parse(input, &graph);
@@ -742,6 +757,7 @@ fn test_expr_test_difference(input: &str
 
 #[test_case("test(parse) & test(expr)"; "with ampersand")]
 #[test_case("test(parse) and test(expr)"; "with and")]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_expr_test_intersect(input: &str) {
     let graph = load_graph();
     let expr = parse(input, &graph);
@@ -778,6 +794,7 @@ fn test_expr_test_intersect(input: &str)
 }
 
 #[test]
+#[ignore = "missing fixture file tests-workspace-metadata.json"]
 fn test_binary_query() {
     let graph = load_graph();
     let expr = parse(