| author | |
| committer | |
| log | d060be880460598dcf89cb3d59bfcdf5059a923d |
| tree | 48ecf394632536d9525bdb4065d9d993e367ec6f |
| parent | 6b4863416611253c68539136ae9e4b83359efe74 |
| signature | Commit is signed but in an unrecognized format. |
2 files changed, 5 insertions(+), 4 deletions(-)
src-self-hosted/link.zig+3-1| ... | ... | @@ -86,7 +86,7 @@ pub fn writeFilePath( |
| 86 | 86 | return result; |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | pub fn openCFile(allocator: *Allocator, file: fs.File, options: Options) !File.C { | |
| 89 | fn openCFile(allocator: *Allocator, file: fs.File, options: Options) !File.C { | |
| 90 | 90 | return File.C{ |
| 91 | 91 | .allocator = allocator, |
| 92 | 92 | .file = file, |
| ... | ... | @@ -282,6 +282,8 @@ pub const File = struct { |
| 282 | 282 | } |
| 283 | 283 | } |
| 284 | 284 | try writer.writeAll(self.main.items); |
| 285 | self.file.?.close(); | |
| 286 | self.file = null; | |
| 285 | 287 | } |
| 286 | 288 | }; |
| 287 | 289 |
src-self-hosted/test.zig+2-3| ... | ... | @@ -480,9 +480,8 @@ pub const TestContext = struct { |
| 480 | 480 | switch (update.case) { |
| 481 | 481 | .Transformation => |expected_output| { |
| 482 | 482 | if (case.cbe) { |
| 483 | var cfile: *link.File.C = module.bin_file.cast(link.File.C).?; | |
| 484 | cfile.file.?.close(); | |
| 485 | cfile.file = null; | |
| 483 | // The C file is always closed after an update, because we don't support | |
| 484 | // incremental updates | |
| 486 | 485 | var file = try tmp.dir.openFile(bin_name, .{ .read = true }); |
| 487 | 486 | defer file.close(); |
| 488 | 487 | var out = file.reader().readAllAlloc(allocator, 1024 * 1024) catch @panic("Unable to read C output!"); |