mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 08:02:32 +00:00
skip "atomicrmw with 128-bit ints" on linux x64_64 due to linker error
This commit is contained in:
parent
50c31e5caa
commit
8ebf18635c
@ -315,6 +315,9 @@ test "atomicrmw with 128-bit ints" {
|
||||
|
||||
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest; // TODO
|
||||
|
||||
// TODO "ld.lld: undefined symbol: __sync_lock_test_and_set_16" on -target x86_64-linux-none -mcpu x86_64
|
||||
if (builtin.zig_backend == .stage2_llvm and builtin.os.tag == .linux) return error.SkipZigTest;
|
||||
|
||||
try testAtomicRmwInt128(.unsigned);
|
||||
comptime try testAtomicRmwInt128(.unsigned);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user