aboutsummaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
authorMathieu Duponchelle <mathieu@centricular.com>2018-05-21 00:19:31 +0200
committerMathieu Duponchelle <mathieu@centricular.com>2018-05-21 00:19:31 +0200
commit10e7566ed84251dcec6ee4ff3cc721e38fb90457 (patch)
tree5e5bf0834cc25ac85038e07ae5d63f0d6bfe07ba /run_unittests.py
parentf59d7bafd24c2ff2c96600b471704d825e7c1a7d (diff)
downloadmeson-10e7566ed84251dcec6ee4ff3cc721e38fb90457.zip
meson-10e7566ed84251dcec6ee4ff3cc721e38fb90457.tar.gz
meson-10e7566ed84251dcec6ee4ff3cc721e38fb90457.tar.bz2
dict: fix CI issues
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/run_unittests.py b/run_unittests.py
index 162bfcf..f93415b 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -582,7 +582,6 @@ class BasePlatformTests(unittest.TestCase):
if inprocess:
try:
(returncode, out, err) = run_configure(self.meson_mainfile, self.meson_args + args + extra_args)
- print (out)
if 'MESON_SKIP_TEST' in out:
raise unittest.SkipTest('Project requested skipping.')
if returncode != 0:
@@ -2331,13 +2330,13 @@ class FailureTests(BasePlatformTests):
def test_dict_requires_key_value_pairs(self):
self.assertMesonRaises("dict = {3, 'foo': 'bar'}",
- 'Only key:value pairs are valid in dict construction.')
+ 'Only key:value pairs are valid in dict construction.')
self.assertMesonRaises("{'foo': 'bar', 3}",
- 'Only key:value pairs are valid in dict construction.')
+ 'Only key:value pairs are valid in dict construction.')
def test_dict_forbids_duplicate_keys(self):
self.assertMesonRaises("dict = {'a': 41, 'a': 42}",
- 'Duplicate dictionary key: a.*')
+ 'Duplicate dictionary key: a.*')
class WindowsTests(BasePlatformTests):