mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
move behavior tests from test/stage1/ to test/
And fix test cases to make them pass. This is in preparation for starting to pass behavior tests with self-hosted.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
const std = @import("std");
|
||||
const expect = std.testing.expect;
|
||||
|
||||
test "@src" {
|
||||
doTheTest();
|
||||
}
|
||||
|
||||
fn doTheTest() void {
|
||||
const src = @src();
|
||||
|
||||
expect(src.line == 9);
|
||||
expect(src.column == 17);
|
||||
expect(std.mem.endsWith(u8, src.fn_name, "doTheTest"));
|
||||
expect(std.mem.endsWith(u8, src.file, "src.zig"));
|
||||
expect(src.fn_name[src.fn_name.len] == 0);
|
||||
expect(src.file[src.file.len] == 0);
|
||||
}
|
||||
Reference in New Issue
Block a user