| author | |
| committer | |
| log | bb1f4d2bdafe669ef251d93c0aa13a9cbaf2ecf2 |
| tree | 7a5fb26198b03b49130952b1d87641bb2e210f40 |
| parent | 44389253c2c3bd47c2c741aa6c804d18d1642ee7 |
2 files changed, 2 insertions(+), 1 deletions(-)
test/src/Cases.zig+1-1| ... | ... | @@ -561,7 +561,7 @@ pub fn lowerToTranslateCSteps( |
| 561 | 561 | for (self.translate.items) |case| switch (case.kind) { |
| 562 | 562 | .run => |output| { |
| 563 | 563 | if (translate_c_options.skip_run_translated_c) continue; |
| 564 | const annotated_case_name = b.fmt("run-translated-c {s}", .{case.name}); | |
| 564 | const annotated_case_name = b.fmt("run-translated-c {s}", .{case.name}); | |
| 565 | 565 | for (test_filters) |test_filter| { |
| 566 | 566 | if (std.mem.indexOf(u8, annotated_case_name, test_filter)) |_| break; |
| 567 | 567 | } else if (test_filters.len > 0) continue; |
test/src/RunTranslatedC.zig+1| ... | ... | @@ -91,6 +91,7 @@ pub fn addCase(self: *RunTranslatedCContext, case: *const TestCase) void { |
| 91 | 91 | run.expectStdErrEqual(""); |
| 92 | 92 | } |
| 93 | 93 | run.expectStdOutEqual(case.expected_stdout); |
| 94 | run.skip_foreign_checks = true; | |
| 94 | 95 | |
| 95 | 96 | self.step.dependOn(&run.step); |
| 96 | 97 | } |