| author | |
| committer | |
| log | 5a3ae38f3b79a69cb6f4ad28934a51165cae2ef1 |
| tree | b41eb5738bcedaacbfcdac17d9c1fcc345df34e2 |
| parent | 8944935499ee6cdbce6e0384efb32e75753adcbd |
1 files changed, 1 insertions(+), 4 deletions(-)
lib/std/fs/test.zig+1-4| ... | ... | @@ -113,10 +113,7 @@ fn testWithAllSupportedPathTypes(test_func: anytype) !void { |
| 113 | 113 | var ctx = TestContext.init(path_type, testing.allocator, path_type.getTransformFn()); |
| 114 | 114 | defer ctx.deinit(); |
| 115 | 115 | |
| 116 | test_func(&ctx) catch |err| { | |
| 117 | std.debug.print("{s}, path type: {s}\n", .{ @errorName(err), enum_field.name }); | |
| 118 | return err; | |
| 119 | }; | |
| 116 | try test_func(&ctx); | |
| 120 | 117 | } |
| 121 | 118 | } |
| 122 | 119 |