diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-01-23 23:48:01 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2020-01-24 02:53:34 +0530 |
commit | 8be4802b0b241acc83c16cc1e00e41fcf3a301fa (patch) | |
tree | aa78010a442e93d1ac7f3475731bcf63cd45e234 /run_unittests.py | |
parent | e99e7424547f96d0e41416e13702a642a152f2fe (diff) | |
download | meson-8be4802b0b241acc83c16cc1e00e41fcf3a301fa.zip meson-8be4802b0b241acc83c16cc1e00e41fcf3a301fa.tar.gz meson-8be4802b0b241acc83c16cc1e00e41fcf3a301fa.tar.bz2 |
unit tests: summary() test does not fail on Windows anymore
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/run_unittests.py b/run_unittests.py index 9008f17..b8f6172 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -1376,6 +1376,7 @@ class DataTests(unittest.TestCase): class BasePlatformTests(unittest.TestCase): def setUp(self): super().setUp() + self.maxDiff = None src_root = os.path.dirname(__file__) src_root = os.path.join(os.getcwd(), src_root) self.src_root = src_root @@ -4194,9 +4195,6 @@ recommended as it is not supported on some platforms''') self.init(testdir) self._run(self.mconf_command + [self.builddir]) - # FIXME: The test is failing on Windows CI even if the print looks good. - # Maybe encoding issue? - @unittest.skipIf(is_windows(), 'This test fails on Windows CI') def test_summary(self): testdir = os.path.join(self.unit_test_dir, '72 summary') out = self.init(testdir) |