Skip to content

Commit bcb0f53

Browse files
committed
remove prague/osaka fixture filter
Signed-off-by: garyschulte <garyschulte@gmail.com>
1 parent a3e0a35 commit bcb0f53

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/spec_test/main.zig

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -88,24 +88,11 @@ pub fn main() !void {
8888
const root = parsed.value;
8989
if (root != .object) continue;
9090

91-
// If any top-level key contains "fork_Osaka", skip matching "fork_Prague" entries
92-
var has_osaka = false;
93-
{
94-
var it = root.object.iterator();
95-
while (it.next()) |kv| {
96-
if (std.mem.indexOf(u8, kv.key_ptr.*, "fork_Osaka") != null) {
97-
has_osaka = true;
98-
break;
99-
}
100-
}
101-
}
102-
10391
var test_iter = root.object.iterator();
10492
while (test_iter.next()) |test_entry| {
10593
const test_name = test_entry.key_ptr.*;
10694
const test_obj = test_entry.value_ptr.*;
10795
if (test_obj != .object) continue;
108-
if (has_osaka and std.mem.indexOf(u8, test_name, "fork_Prague") != null) continue;
10996

11097
var cases: std.ArrayList(types.TestCase) = .{};
11198
parseTestCases(a, test_name, &test_obj.object, &cases) catch |err| {

0 commit comments

Comments
 (0)