diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2018-03-12 14:18:45 +0000 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-03-12 22:25:00 +0200 |
commit | 7bf29b8efdb1234e3a0ff68586821ee54f91903a (patch) | |
tree | 22bcdd716478f8c4d309ad1dbec61269f83b26db /run_unittests.py | |
parent | 98fc7a82dc656af8d6a1c8e61ec110202d9f83e0 (diff) | |
download | meson-7bf29b8efdb1234e3a0ff68586821ee54f91903a.zip meson-7bf29b8efdb1234e3a0ff68586821ee54f91903a.tar.gz meson-7bf29b8efdb1234e3a0ff68586821ee54f91903a.tar.bz2 |
Fix typo preventing soname unit tests from running
Fix a typo in ac256cb6 preventing soname unit tests from running
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index cbae559..38728ab 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -2318,7 +2318,7 @@ class LinuxlikeTests(BasePlatformTests): self.assertTrue(msg in mesonlog or msg2 in mesonlog) def _test_soname_impl(self, libpath, install): - if is_cygwin() or is_osx: + if is_cygwin() or is_osx(): raise unittest.SkipTest('Test only applicable to ELF and linuxlike sonames') testdir = os.path.join(self.unit_test_dir, '1 soname') |