diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-03-25 13:44:50 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2023-03-25 16:23:55 -0400 |
| commit | 1e080e505617b8a7961971630c059592f7366223 (patch) | |
| tree | a20ded8cf08eaddf48795549e649a3da0c622a6a /test/behavior/slice.zig | |
| parent | 6d9bdc8733419ebfc9527d114b637c57d3fd8a42 (diff) | |
| download | zig-1e080e505617b8a7961971630c059592f7366223.tar.gz zig-1e080e505617b8a7961971630c059592f7366223.zip | |
x86_64: implement atomic loops
Diffstat (limited to 'test/behavior/slice.zig')
| -rw-r--r-- | test/behavior/slice.zig | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/behavior/slice.zig b/test/behavior/slice.zig index 2a0944a5b6..029f6838d0 100644 --- a/test/behavior/slice.zig +++ b/test/behavior/slice.zig @@ -688,7 +688,6 @@ test "slice field ptr var" { test "global slice field access" { if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO const S = struct { @@ -733,7 +732,6 @@ test "empty slice ptr is non null" { test "slice decays to many pointer" { if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; var buf: [8]u8 = "abcdefg\x00".*; const p: [*:0]const u8 = buf[0..7 :0]; @@ -744,7 +742,6 @@ test "write through pointer to optional slice arg" { if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; - if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; const S = struct { fn bar(foo: *?[]const u8) !void { |
