| ... | @@ -2700,6 +2700,7 @@ pub fn addIncrementalTests(b: *std.Build, test_step: *Step, test_filters: []cons | ... | @@ -2700,6 +2700,7 @@ pub fn addIncrementalTests(b: *std.Build, test_step: *Step, test_filters: []cons |
| 2700 | var it = try dir.walk(b.graph.arena); | 2700 | var it = try dir.walk(b.graph.arena); |
| 2701 | while (try it.next(io)) |entry| { | 2701 | while (try it.next(io)) |entry| { |
| 2702 | if (entry.kind != .file) continue; | 2702 | if (entry.kind != .file) continue; |
| | 2703 | if (std.mem.endsWith(u8, entry.basename, ".swp")) continue; |
| 2703 | | 2704 | |
| 2704 | for (test_filters) |test_filter| { | 2705 | for (test_filters) |test_filter| { |
| 2705 | if (std.mem.indexOf(u8, entry.path, test_filter)) |_| break; | 2706 | if (std.mem.indexOf(u8, entry.path, test_filter)) |_| break; |