diff options
author | davidovski <david@davidovski.xyz> | 2022-10-22 16:29:29 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-10-22 16:29:29 +0100 |
commit | f99268f797c120a24030a573ef22813cd018beb5 (patch) | |
tree | ee18857a5eda7bc94286e3924dc2209aea7b92c4 /repo/meson/skip-broken-tests.patch | |
parent | 95545d88b997a17ff03bb164af33c33e2a12d693 (diff) |
Added unrar
Diffstat (limited to 'repo/meson/skip-broken-tests.patch')
-rw-r--r-- | repo/meson/skip-broken-tests.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/repo/meson/skip-broken-tests.patch b/repo/meson/skip-broken-tests.patch new file mode 100644 index 0000000..09ea992 --- /dev/null +++ b/repo/meson/skip-broken-tests.patch @@ -0,0 +1,36 @@ +--- a/unittests/linuxliketests.py ++++ b/unittests/linuxliketests.py +@@ -993,6 +993,8 @@ + self.assertEqual(got_rpath, yonder_libdir, rpath_format) + + @skip_if_not_base_option('b_sanitize') ++ # https://github.com/mesonbuild/meson/issues/8283 ++ @unittest.skip('broken with improperly detected sanitizers') + def test_pch_with_address_sanitizer(self): + if is_cygwin(): + raise SkipTest('asan not available on Cygwin') +@@ -1192,6 +1192,7 @@ + self.build() + + @skipIfNoPkgconfig ++ @unittest.skip('fails because of GNU libintl mess on alpine :)') + def test_pkgconfig_formatting(self): + testdir = os.path.join(self.unit_test_dir, '38 pkgconfig format') + self.init(testdir) +--- a/unittests/allplatformstests.py ++++ b/unittests/allplatformstests.py +@@ -377,5 +377,6 @@ + self.assertNotEqual(before, after) + ++ @unittest.skip('samurai has a reverse order') + def test_static_compile_order(self): + ''' + Test that the order of files in a compiler command-line while compiling +@@ -3198,6 +3198,7 @@ + else: + self.assertEqual(o, e) + ++ @unittest.skip('broken with current version of samurai') + def test_meson_compile(self): + """Test the meson compile command.""" + |