diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-10-17 22:15:46 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-10-18 13:57:28 -0400 |
| commit | d8f7c792986d6b9367f49d914689fc2744fdb73a (patch) | |
| tree | 83a40ec29dc1d72242aa40fd341978b605f88b01 /test/tests.zig | |
| parent | 8804d726842037e923f532ea477e559779c24587 (diff) | |
| download | zig-d8f7c792986d6b9367f49d914689fc2744fdb73a.tar.gz zig-d8f7c792986d6b9367f49d914689fc2744fdb73a.zip | |
x86_64: improve inline assembly support
* C++-style comments
* indirect call operands
* fix misleading immediate debug formatting
Diffstat (limited to 'test/tests.zig')
| -rw-r--r-- | test/tests.zig | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/tests.zig b/test/tests.zig index 0185f665c9..88ab31aabd 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -997,8 +997,9 @@ pub fn addModuleTests(b: *std.Build, options: ModuleTestOptions) *Step { continue; } - // TODO get universal-libc tests passing for self-hosted backends. - if (test_target.use_llvm == false and mem.eql(u8, options.name, "universal-libc")) + // TODO get universal-libc tests passing for other self-hosted backends. + if (test_target.target.getCpuArch() != .x86_64 and + test_target.use_llvm == false and mem.eql(u8, options.name, "universal-libc")) continue; // TODO get std lib tests passing for self-hosted backends. |
