diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-02-23 16:10:17 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-23 16:10:17 -0500 |
| commit | ecf56d85efa227acf1bd9cab9ad2d5af05f7efe5 (patch) | |
| tree | d83ccefd98555c33d492273cb20f86fe78965416 /test/behavior/src.zig | |
| parent | 88d1258e08e668e620d5f8f4681315e555acbcd2 (diff) | |
| parent | ab4d693cfc82465c42021ba6f18c65fdd5f969e6 (diff) | |
| download | zig-ecf56d85efa227acf1bd9cab9ad2d5af05f7efe5.tar.gz zig-ecf56d85efa227acf1bd9cab9ad2d5af05f7efe5.zip | |
Merge pull request #10969 from Vexu/stage2
stage2: fn typeinfo params
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(); +} |
