@@ -53,9 +53,6 @@ def test_addon_suppress_inline():
53
53
__test_addon_suppress_inline (['-j1' ])
54
54
55
55
56
- # TODO: inline suppressions currently do not work with whole program analysis and addons - see #12835
57
- # whole program analysis requires a build dir with -j
58
- @pytest .mark .xfail (strict = True )
59
56
def test_addon_suppress_inline_j ():
60
57
__test_addon_suppress_inline (['-j2' ])
61
58
@@ -66,8 +63,6 @@ def test_addon_suppress_inline_builddir(tmpdir):
66
63
__test_addon_suppress_inline (['-j1' , '--cppcheck-build-dir={}' .format (build_dir )])
67
64
68
65
69
- # TODO: inline suppressions currently do not work with whole program analysis and addons - see #12835
70
- @pytest .mark .xfail (strict = True )
71
66
def test_addon_suppress_inline_builddir_j (tmpdir ):
72
67
build_dir = os .path .join (tmpdir , 'b1' )
73
68
os .mkdir (build_dir )
@@ -101,9 +96,6 @@ def test_addon_suppress_inline_project(tmpdir):
101
96
__test_addon_suppress_inline_project (tmpdir , ['-j1' ])
102
97
103
98
104
- # TODO: inline suppressions currently do not work with whole program analysis and addons - see #12835
105
- # whole program analysis requires a build dir with -j
106
- @pytest .mark .xfail (strict = True )
107
99
def test_addon_suppress_inline_project_j (tmpdir ):
108
100
__test_addon_suppress_inline_project (tmpdir , ['-j2' ])
109
101
@@ -114,8 +106,6 @@ def test_addon_suppress_inline_project_builddir(tmpdir):
114
106
__test_addon_suppress_inline_project (tmpdir , ['-j1' , '--cppcheck-build-dir={}' .format (build_dir )])
115
107
116
108
117
- # TODO: inline suppressions currently do not work with whole program analysis and addons - see #12835
118
- @pytest .mark .xfail (strict = True )
119
109
def test_addon_suppress_inline_project_builddir_j (tmpdir ):
120
110
build_dir = os .path .join (tmpdir , 'b1' )
121
111
os .mkdir (build_dir )
@@ -146,9 +136,6 @@ def test_suppress_inline():
146
136
__test_suppress_inline (['-j1' ])
147
137
148
138
149
- # TODO: inline suppressions do not work with whole program analysis and -j
150
- # whole program analysis requires a build dir with -j
151
- @pytest .mark .xfail (strict = True )
152
139
def test_suppress_inline_j ():
153
140
__test_suppress_inline (['-j2' ])
154
141
@@ -159,8 +146,6 @@ def test_suppress_inline_builddir(tmpdir):
159
146
__test_suppress_inline (['-j1' , '--cppcheck-build-dir={}' .format (build_dir )])
160
147
161
148
162
- # TODO: inline suppressions do not work with whole program analysis and -j
163
- @pytest .mark .xfail (strict = True )
164
149
def test_suppress_inline_builddir_j (tmpdir ):
165
150
build_dir = os .path .join (tmpdir , 'b1' )
166
151
os .mkdir (build_dir )
@@ -195,8 +180,6 @@ def test_suppress_inline_project(tmpdir):
195
180
__test_suppress_inline_project (tmpdir , ['-j1' ])
196
181
197
182
198
- # whole program analysis requires a build dir with -j
199
- @pytest .mark .xfail (strict = True )
200
183
def test_suppress_inline_project_j (tmpdir ):
201
184
__test_suppress_inline_project (tmpdir , ['-j2' ])
202
185
@@ -206,8 +189,6 @@ def test_suppress_inline_project_builddir(tmpdir):
206
189
os .mkdir (build_dir )
207
190
__test_suppress_inline_project (tmpdir , ['-j1' , '--cppcheck-build-dir={}' .format (build_dir )])
208
191
209
- # TODO: inline suppressions do not work with whole program analysis and -j
210
- @pytest .mark .xfail (strict = True )
211
192
def test_suppress_inline_project_builddir_j (tmpdir ):
212
193
build_dir = os .path .join (tmpdir , 'b1' )
213
194
os .mkdir (build_dir )
0 commit comments