| author | |
| committer | |
| log | fbce6a749da9e3714d5e0fb662a3849b34cc9f89 |
| tree | 59b47da0b77481882caf2fe4e13b4a756b3bb32f |
| parent | 1a3c1fe820ad9eeaa7b30a1fc6e1b8b8e2b871b6 |
3 files changed, 4 insertions(+), 0 deletions(-)
test/behavior/array.zig+1| ... | ... | @@ -84,6 +84,7 @@ test "array concat with tuple" { |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | test "array init with concat" { |
| 87 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO | |
| 87 | 88 | const a = 'a'; |
| 88 | 89 | var i: [4]u8 = [2]u8{ a, 'b' } ++ [2]u8{ 'c', 'd' }; |
| 89 | 90 | try expect(std.mem.eql(u8, &i, "abcd")); |
test/behavior/ptrcast.zig+2| ... | ... | @@ -170,6 +170,7 @@ test "lower reinterpreted comptime field ptr" { |
| 170 | 170 | |
| 171 | 171 | test "reinterpret struct field at comptime" { |
| 172 | 172 | if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO |
| 173 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO | |
| 173 | 174 | |
| 174 | 175 | const numNative = comptime Bytes.init(0x12345678); |
| 175 | 176 | if (native_endian != .Little) { |
| ... | ... | @@ -232,6 +233,7 @@ test "ptrcast of const integer has the correct object size" { |
| 232 | 233 | test "implicit optional pointer to optional anyopaque pointer" { |
| 233 | 234 | if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO |
| 234 | 235 | if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO |
| 236 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO | |
| 235 | 237 | |
| 236 | 238 | var buf: [4]u8 = "aoeu".*; |
| 237 | 239 | var x: ?[*]u8 = &buf; |
test/behavior/slice.zig+1| ... | ... | @@ -227,6 +227,7 @@ fn sliceFromLenToLen(a_slice: []u8, start: usize, end: usize) []u8 { |
| 227 | 227 | |
| 228 | 228 | test "C pointer" { |
| 229 | 229 | if (builtin.zig_backend == .stage2_sparc64) return error.SkipZigTest; // TODO |
| 230 | if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO | |
| 230 | 231 | |
| 231 | 232 | var buf: [*c]const u8 = "kjdhfkjdhfdkjhfkfjhdfkjdhfkdjhfdkjhf"; |
| 232 | 233 | var len: u32 = 10; |