summaryrefslogtreecommitdiff
path: root/repo/meson/skip-broken-tests.patch
blob: 09ea99280c6f5ae7f78694b40e90cc374aedb404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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."""