diff options
| author | Marvin Scholz <epirat07@gmail.com> | 2022-03-30 18:45:02 +0200 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-11-22 22:53:07 -0500 |
| commit | 7cbc15b8121aa3cae4c91fce0db4eafee78bf55f (patch) | |
| tree | 40e855e715e2428e6fe7b7e66b119ed790621025 /unittests/linuxliketests.py | |
| parent | 49cd97c43487551a6b8bac4c5560bb2053270009 (diff) | |
| download | meson-7cbc15b8121aa3cae4c91fce0db4eafee78bf55f.tar.gz | |
unittests: add and use get_meson_log_raw function
This is like get_meson_log but returns the whole contents
not split into individual lines.
Diffstat (limited to 'unittests/linuxliketests.py')
| -rw-r--r-- | unittests/linuxliketests.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/unittests/linuxliketests.py b/unittests/linuxliketests.py index 25b392f28..1e530b04a 100644 --- a/unittests/linuxliketests.py +++ b/unittests/linuxliketests.py @@ -345,12 +345,12 @@ class LinuxlikeTests(BasePlatformTests): testdir = os.path.join(self.framework_test_dir, '4 qt') self.init(testdir, extra_args=['-Dmethod=pkg-config']) # Confirm that the dependency was found with pkg-config - mesonlog = self.get_meson_log() + mesonlog = self.get_meson_log_raw() if qt4 == 0: - self.assertRegex('\n'.join(mesonlog), + self.assertRegex(mesonlog, r'Run-time dependency qt4 \(modules: Core\) found: YES 4.* \(pkg-config\)') if qt5 == 0: - self.assertRegex('\n'.join(mesonlog), + self.assertRegex(mesonlog, r'Run-time dependency qt5 \(modules: Core\) found: YES 5.* \(pkg-config\)') @skip_if_not_base_option('b_sanitize') @@ -380,8 +380,8 @@ class LinuxlikeTests(BasePlatformTests): testdir = os.path.join(self.framework_test_dir, '4 qt') self.init(testdir, extra_args=['-Dmethod=qmake']) # Confirm that the dependency was found with qmake - mesonlog = self.get_meson_log() - self.assertRegex('\n'.join(mesonlog), + mesonlog = self.get_meson_log_raw() + self.assertRegex(mesonlog, r'Run-time dependency qt5 \(modules: Core\) found: YES .* \(qmake\)\n') def test_qt6dependency_qmake_detection(self): @@ -400,8 +400,8 @@ class LinuxlikeTests(BasePlatformTests): testdir = os.path.join(self.framework_test_dir, '4 qt') self.init(testdir, extra_args=['-Dmethod=qmake']) # Confirm that the dependency was found with qmake - mesonlog = self.get_meson_log() - self.assertRegex('\n'.join(mesonlog), + mesonlog = self.get_meson_log_raw() + self.assertRegex(mesonlog, r'Run-time dependency qt6 \(modules: Core\) found: YES .* \(qmake\)\n') def glob_sofiles_without_privdir(self, g): |
