diff options
author | Antoine Jacoutot <ajacoutot@openbsd.org> | 2019-03-13 09:36:05 +0100 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-04-16 23:44:25 +0530 |
commit | c28c8b8253973b378c3bac87b21b406ee3c9217c (patch) | |
tree | 54aff3700dbb5de9d26001b954522978c321812f | |
parent | 53fd29f6c5f55b0a510bc474a3d571821c0c112a (diff) | |
download | meson-c28c8b8253973b378c3bac87b21b406ee3c9217c.zip meson-c28c8b8253973b378c3bac87b21b406ee3c9217c.tar.gz meson-c28c8b8253973b378c3bac87b21b406ee3c9217c.tar.bz2 |
compilers: -fsanitize is not supported on OpenBSD (second pass)
Similar to https://github.com/mesonbuild/meson/pull/5067
This part was missed in my previous commit.
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/run_unittests.py b/run_unittests.py index a8510d0..888dcbd 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -4704,6 +4704,8 @@ class LinuxlikeTests(BasePlatformTests): def test_pch_with_address_sanitizer(self): if is_cygwin(): raise unittest.SkipTest('asan not available on Cygwin') + if is_openbsd(): + raise unittest.SkipTest('-fsanitize=address is not supported on OpenBSD') testdir = os.path.join(self.common_test_dir, '13 pch') self.init(testdir, ['-Db_sanitize=address']) |