| ... | ... | @@ -87,7 +87,7 @@ fn exec(cwd: []const u8, argv: []const []const u8) !ChildProcess.ExecResult { |
| 87 | 87 | fn testZigInitLib(zig_exe: []const u8, dir_path: []const u8) !void { |
| 88 | 88 | _ = try exec(dir_path, [_][]const u8{ zig_exe, "init-lib" }); |
| 89 | 89 | const test_result = try exec(dir_path, [_][]const u8{ zig_exe, "build", "test" }); |
| 90 | | testing.expect(std.mem.endsWith(u8, test_result.stderr, "All tests passed.\n")); |
| 90 | testing.expect(std.mem.endsWith(u8, test_result.stderr, "All 1 tests passed.\n")); |
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | fn testZigInitExe(zig_exe: []const u8, dir_path: []const u8) !void { |