| ... | ... | @@ -17,7 +17,6 @@ fn testDerefPtr() !void { |
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | test "pointer arithmetic" { |
| 20 | | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; |
| 21 | 20 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; |
| 22 | 21 | |
| 23 | 22 | var ptr: [*]const u8 = "abcd"; |
| ... | ... | @@ -64,7 +63,6 @@ test "initialize const optional C pointer to null" { |
| 64 | 63 | } |
| 65 | 64 | |
| 66 | 65 | test "assigning integer to C pointer" { |
| 67 | | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; |
| 68 | 66 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; |
| 69 | 67 | |
| 70 | 68 | var x: i32 = 0; |
| ... | ... | @@ -81,8 +79,6 @@ test "assigning integer to C pointer" { |
| 81 | 79 | } |
| 82 | 80 | |
| 83 | 81 | test "C pointer comparison and arithmetic" { |
| 84 | | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; |
| 85 | | |
| 86 | 82 | const S = struct { |
| 87 | 83 | fn doTheTest() !void { |
| 88 | 84 | var ptr1: [*c]u32 = 0; |
| ... | ... | @@ -148,7 +144,6 @@ test "peer type resolution with C pointer and const pointer" { |
| 148 | 144 | } |
| 149 | 145 | |
| 150 | 146 | test "implicit casting between C pointer and optional non-C pointer" { |
| 151 | | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; |
| 152 | 147 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; |
| 153 | 148 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; |
| 154 | 149 | |
| ... | ... | @@ -279,7 +274,6 @@ test "array initialization types" { |
| 279 | 274 | |
| 280 | 275 | test "null terminated pointer" { |
| 281 | 276 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; |
| 282 | | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO |
| 283 | 277 | |
| 284 | 278 | const S = struct { |
| 285 | 279 | fn doTheTest() !void { |
| ... | ... | @@ -296,7 +290,6 @@ test "null terminated pointer" { |
| 296 | 290 | |
| 297 | 291 | test "allow any sentinel" { |
| 298 | 292 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; |
| 299 | | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO |
| 300 | 293 | |
| 301 | 294 | const S = struct { |
| 302 | 295 | fn doTheTest() !void { |
| ... | ... | @@ -311,7 +304,6 @@ test "allow any sentinel" { |
| 311 | 304 | |
| 312 | 305 | test "pointer sentinel with enums" { |
| 313 | 306 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; |
| 314 | | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO |
| 315 | 307 | |
| 316 | 308 | const S = struct { |
| 317 | 309 | const Number = enum { |
| ... | ... | @@ -332,7 +324,6 @@ test "pointer sentinel with enums" { |
| 332 | 324 | test "pointer sentinel with optional element" { |
| 333 | 325 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; |
| 334 | 326 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO |
| 335 | | if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO |
| 336 | 327 | |
| 337 | 328 | const S = struct { |
| 338 | 329 | fn doTheTest() !void { |