mirror of
https://github.com/ziglang/zig.git
synced 2026-02-21 16:54:52 +00:00
enable now-passing test cases
These can now be enabled thanks to bug fixes that landed in LLVM 10.
This commit is contained in:
parent
38a1af5d4f
commit
c70471fae6
@ -1658,9 +1658,6 @@ test "parse into tagged union" {
|
||||
}
|
||||
|
||||
test "parseFree descends into tagged union" {
|
||||
// tagged unions are broken on arm64: https://github.com/ziglang/zig/issues/4492
|
||||
if (std.builtin.arch == .aarch64) return error.SkipZigTest;
|
||||
|
||||
var fail_alloc = testing.FailingAllocator.init(testing.allocator, 1);
|
||||
const options = ParseOptions{ .allocator = &fail_alloc.allocator };
|
||||
const T = union(enum) {
|
||||
|
||||
@ -190,8 +190,6 @@ fn testAtomicRmwInt() void {
|
||||
_ = @atomicRmw(u8, &x, .Xor, 2, .SeqCst);
|
||||
expect(x == 0xfd);
|
||||
|
||||
// TODO https://github.com/ziglang/zig/issues/4724
|
||||
if (builtin.arch == .mipsel) return;
|
||||
_ = @atomicRmw(u8, &x, .Max, 1, .SeqCst);
|
||||
expect(x == 0xfd);
|
||||
_ = @atomicRmw(u8, &x, .Min, 1, .SeqCst);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user