diff options
| author | Antoine Jacoutot <ajacoutot@openbsd.org> | 2019-03-13 09:36:05 +0100 |
|---|---|---|
| committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2019-03-13 08:57:46 +0000 |
| commit | 5d3e20984dadefb122e9e4fae584b40d936844e8 (patch) | |
| tree | 5937308d1e5ebd29db854837f578d3cd108c30c0 | |
| parent | f7af1a628514d4f0ab061db449a30b3079f59834 (diff) | |
| download | meson-5d3e20984dadefb122e9e4fae584b40d936844e8.tar.gz | |
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 e19b94b7b..3f1a29017 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -4697,6 +4697,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']) |
