@@ -26,7 +26,6 @@ def test01_instance_box_unbox(self):
2626        with  raises (TypeError ):
2727            cppyy .addressof ('doesnotexist' )
2828
29-     @mark .xfail  
3029    def  test02_method_reflection (self ):
3130        """Method reflection tooling""" 
3231
@@ -51,7 +50,6 @@ class MyData_m1 {};
5150        assert  ns .MyData_m1 .__init__ .__cpp_reflex__ (r .RETURN_TYPE , r .AS_TYPE )   ==  ns .MyData_m1 
5251        assert  ns .MyData_m1 .__init__ .__cpp_reflex__ (r .RETURN_TYPE , r .AS_STRING ) ==  'ReflexTest::MyData_m1' 
5352
54-     @mark .xfail  
5553    def  test03_datamember_reflection (self ):
5654        """Data member reflection tooling""" 
5755
@@ -119,7 +117,6 @@ def go_fast(a):
119117        assert  (go_fast (x ) ==  go_slow (x )).all ()
120118        assert  self .compare (go_slow , go_fast , 300000 , x )
121119
122-     @mark .xfail  
123120    def  test02_JITed_template_free_func (self ):
124121        """Numba-JITing of Cling-JITed templated free function""" 
125122
@@ -153,7 +150,6 @@ def go_fast(a):
153150        assert  (go_fast (x ) ==  go_slow (x )).all ()
154151        assert  self .compare (go_slow , go_fast , 100000 , x )
155152
156-     @mark .xfail  
157153    def  test03_proxy_argument_for_field (self ):
158154        """Numba-JITing of a free function taking a proxy argument for field access""" 
159155
@@ -187,7 +183,6 @@ def go_fast(a, d):
187183        assert ((go_fast (x , d ) ==  go_slow (x , d )).all ())
188184        assert  self .compare (go_slow , go_fast , 10000 , x , d )
189185
190-     @mark .xfail  
191186    def  test04_proxy_argument_for_method (self ):
192187        """Numba-JITing of a free function taking a proxy argument for method access""" 
193188
@@ -272,7 +267,6 @@ def tma(x):
272267
273268        assert  sum  ==  tma (x )
274269
275-     @mark .xfail  
276270    def  test07_datatype_mapping (self ):
277271        """Numba-JITing of various data types""" 
278272
@@ -306,7 +300,6 @@ def access_field(d):
306300                val  =  getattr (nl [ntype ], m )()
307301                assert  access_field (getattr (ns , 'M%d' % i )(val )) ==  val 
308302
309-     @mark .xfail  
310303    def  test08_object_returns (self ):
311304        """Numba-JITing of a function that returns an object""" 
312305
@@ -730,7 +723,6 @@ def setup_class(cls):
730723        import  cppyy 
731724        import  cppyy .numba_ext 
732725
733-     @mark .xfail  
734726    def  test01_templated_freefunction (self ):
735727        """Numba support documentation example: free templated function""" 
736728
@@ -759,7 +751,6 @@ def tsa(a):
759751        assert  type (tsa (a )) ==  int 
760752        assert  tsa (a ) ==  285 
761753
762-     @mark .xfail  
763754    def  test02_class_features (self ):
764755        """Numba support documentation example: class features""" 
765756
0 commit comments