zig/test/behavior/const_slice_child.zig
Andrew Kelley 4307436b99 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.
2021-04-29 15:54:04 -07:00

48 lines
1.0 KiB
Zig

const std = @import("std");
const debug = std.debug;
const testing = std.testing;
const expect = testing.expect;
var argv: [*]const [*]const u8 = undefined;
test "const slice child" {
const strs = [_][*]const u8{
"one",
"two",
"three",
};
argv = &strs;
bar(strs.len);
}
fn foo(args: [][]const u8) void {
expect(args.len == 3);
expect(streql(args[0], "one"));
expect(streql(args[1], "two"));
expect(streql(args[2], "three"));
}
fn bar(argc: usize) void {
const args = testing.allocator.alloc([]const u8, argc) catch unreachable;
defer testing.allocator.free(args);
for (args) |_, i| {
const ptr = argv[i];
args[i] = ptr[0..strlen(ptr)];
}
foo(args);
}
fn strlen(ptr: [*]const u8) usize {
var count: usize = 0;
while (ptr[count] != 0) : (count += 1) {}
return count;
}
fn streql(a: []const u8, b: []const u8) bool {
if (a.len != b.len) return false;
for (a) |item, index| {
if (b[index] != item) return false;
}
return true;
}