diff options
Diffstat (limited to 'test/behavior/src.zig')
| -rw-r--r-- | test/behavior/src.zig | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/test/behavior/src.zig b/test/behavior/src.zig index bb0a0971b4..b0e4f2ba70 100644 --- a/test/behavior/src.zig +++ b/test/behavior/src.zig @@ -1,21 +1,20 @@ -const std = @import("std"); -const builtin = @import("builtin"); -const expect = std.testing.expect; - -test "@src" { - // TODO why is this failing on stage1? - return error.SkipZigTest; - - // try doTheTest(); -} - fn doTheTest() !void { - const src = @src(); + const src = @src(); // do not move - try expect(src.line == 9); + try expect(src.line == 2); try expect(src.column == 17); try expect(std.mem.endsWith(u8, src.fn_name, "doTheTest")); try expect(std.mem.endsWith(u8, src.file, "src.zig")); try expect(src.fn_name[src.fn_name.len] == 0); try expect(src.file[src.file.len] == 0); } + +const std = @import("std"); +const builtin = @import("builtin"); +const expect = std.testing.expect; + +test "@src" { + if (builtin.zig_backend != .stage1) return error.SkipZigTest; + + try doTheTest(); +} |
