Commit 2caea981 authored by Stefan Behnel's avatar Stefan Behnel

disable checks in test that are unrelated to the tested behaviour

parent 787b8f9d
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
cimport cython cimport cython
@cython.test_assert_path_exists('//ComprehensionNode') #@cython.test_assert_path_exists('//ComprehensionNode')
@cython.test_fail_if_path_exists('//SimpleCallNode') #@cython.test_fail_if_path_exists('//SimpleCallNode')
def list_genexpr_iterable_lookup(): def list_genexpr_iterable_lookup():
""" """
>>> x = (0,1,2,3,4,5) >>> x = (0,1,2,3,4,5)
...@@ -18,8 +18,8 @@ def list_genexpr_iterable_lookup(): ...@@ -18,8 +18,8 @@ def list_genexpr_iterable_lookup():
assert x == (0,1,2,3,4,5) assert x == (0,1,2,3,4,5)
return result return result
@cython.test_assert_path_exists('//ComprehensionNode') #@cython.test_assert_path_exists('//ComprehensionNode')
@cython.test_fail_if_path_exists('//SingleAssignmentNode//SimpleCallNode') #@cython.test_fail_if_path_exists('//SingleAssignmentNode//SimpleCallNode')
def genexpr_iterable_in_closure(): def genexpr_iterable_in_closure():
""" """
>>> genexpr_iterable_in_closure() >>> genexpr_iterable_in_closure()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment