summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2023-10-02 13:46:39 -0700
committerXavier Claessens <xclaesse@gmail.com>2023-10-02 17:55:00 -0400
commit710a753c78077220b13a9f7e999dcdb61339efb1 (patch)
tree0ae32fcf8a6d5711ee4ab03f370a307ff425ff2e
parent9bccc96c4ee35328a48e1991cc5d18dc53572ed3 (diff)
downloadmeson-710a753c78077220b13a9f7e999dcdb61339efb1.tar.gz
nasm tests: skip asm language test on Solaris & illumos
The code in this test to make Linux system calls is not compatible with the SunOS kernel system call conventions.
-rw-r--r--test cases/nasm/2 asm language/meson.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/test cases/nasm/2 asm language/meson.build b/test cases/nasm/2 asm language/meson.build
index 0eecd99a6..d025d43ea 100644
--- a/test cases/nasm/2 asm language/meson.build
+++ b/test cases/nasm/2 asm language/meson.build
@@ -7,6 +7,8 @@ endif
if host_machine.system() == 'windows'
error('MESON_SKIP_TEST: this test asm is not made for Windows')
+elif host_machine.system() == 'sunos'
+ error('MESON_SKIP_TEST: this test asm is not made for Solaris or illumos')
endif
if meson.backend().startswith('vs')