From 7386ad249f3ae49166e93a05db80e86118edfe97 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 7 Apr 2011 12:58:24 +0200 Subject: [PATCH] added tags to test files --- tests/run/args_unpacking_in_closure_T658.pyx | 2 ++ tests/run/closure_arg_type_error.pyx | 2 ++ tests/run/closure_class_T596.pyx | 2 ++ tests/run/closure_decorators_T478.pyx | 2 ++ tests/run/closure_inside_cdef_T554.pyx | 2 ++ tests/run/closure_name_mangling_T537.pyx | 2 ++ tests/run/closure_self.pyx | 2 ++ tests/run/closure_tests_1.pyx | 2 ++ tests/run/closure_tests_2.pyx | 2 ++ tests/run/closure_tests_3.pyx | 2 ++ tests/run/closure_tests_4.pyx | 2 ++ tests/run/closures_T82.pyx | 2 ++ tests/run/list_comp_in_closure_T598.pyx | 2 ++ 13 files changed, 26 insertions(+) diff --git a/tests/run/args_unpacking_in_closure_T658.pyx b/tests/run/args_unpacking_in_closure_T658.pyx index f6401905..98b57743 100644 --- a/tests/run/args_unpacking_in_closure_T658.pyx +++ b/tests/run/args_unpacking_in_closure_T658.pyx @@ -1,3 +1,5 @@ +# mode: run +# tag: closures # ticket: 658 def outer(int x, *args, **kwargs): diff --git a/tests/run/closure_arg_type_error.pyx b/tests/run/closure_arg_type_error.pyx index a2a65594..e1873ae1 100644 --- a/tests/run/closure_arg_type_error.pyx +++ b/tests/run/closure_arg_type_error.pyx @@ -1,3 +1,5 @@ +# mode: run +# tag: closures # The arguments in f() are put into the closure one after the other, # so the reference of 'o' is filled in before the type errors are diff --git a/tests/run/closure_class_T596.pyx b/tests/run/closure_class_T596.pyx index 80434344..6a92d9f8 100644 --- a/tests/run/closure_class_T596.pyx +++ b/tests/run/closure_class_T596.pyx @@ -1,3 +1,5 @@ +# mode: run +# tag: closures # ticket: 596 def simple(a, b): diff --git a/tests/run/closure_decorators_T478.pyx b/tests/run/closure_decorators_T478.pyx index 182f208c..e1c5f491 100644 --- a/tests/run/closure_decorators_T478.pyx +++ b/tests/run/closure_decorators_T478.pyx @@ -1,3 +1,5 @@ +# mode: run +# tag: closures # ticket: 478 __doc__ = """ diff --git a/tests/run/closure_inside_cdef_T554.pyx b/tests/run/closure_inside_cdef_T554.pyx index 99d7f9f5..494f17fa 100644 --- a/tests/run/closure_inside_cdef_T554.pyx +++ b/tests/run/closure_inside_cdef_T554.pyx @@ -1,3 +1,5 @@ +# mode: run +# tag: closures # ticket: 554 def call_f(x): diff --git a/tests/run/closure_name_mangling_T537.pyx b/tests/run/closure_name_mangling_T537.pyx index 453d3c16..0324109e 100644 --- a/tests/run/closure_name_mangling_T537.pyx +++ b/tests/run/closure_name_mangling_T537.pyx @@ -1,3 +1,5 @@ +# mode: run +# tag: closures # ticket: 537 __doc__ = u""" diff --git a/tests/run/closure_self.pyx b/tests/run/closure_self.pyx index 60c256d4..cfc62498 100644 --- a/tests/run/closure_self.pyx +++ b/tests/run/closure_self.pyx @@ -1,3 +1,5 @@ +# mode: run +# tag: closures cdef class Test: cdef int x diff --git a/tests/run/closure_tests_1.pyx b/tests/run/closure_tests_1.pyx index 82d412e8..af443894 100644 --- a/tests/run/closure_tests_1.pyx +++ b/tests/run/closure_tests_1.pyx @@ -1,3 +1,5 @@ +# mode: run +# tag: closures # # closure_tests_1.pyx # diff --git a/tests/run/closure_tests_2.pyx b/tests/run/closure_tests_2.pyx index 1b86ffb8..ace26653 100644 --- a/tests/run/closure_tests_2.pyx +++ b/tests/run/closure_tests_2.pyx @@ -1,3 +1,5 @@ +# mode: run +# tag: closures # # closure_tests_2.pyx # diff --git a/tests/run/closure_tests_3.pyx b/tests/run/closure_tests_3.pyx index 4babb992..3d0543d0 100644 --- a/tests/run/closure_tests_3.pyx +++ b/tests/run/closure_tests_3.pyx @@ -1,3 +1,5 @@ +# mode: run +# tag: closures # # closure_tests_3.pyx # diff --git a/tests/run/closure_tests_4.pyx b/tests/run/closure_tests_4.pyx index 81e16450..1451e24b 100644 --- a/tests/run/closure_tests_4.pyx +++ b/tests/run/closure_tests_4.pyx @@ -1,3 +1,5 @@ +# mode: run +# tag: closures # # closure_tests_4.pyx # diff --git a/tests/run/closures_T82.pyx b/tests/run/closures_T82.pyx index eb6f98b4..86e0405d 100644 --- a/tests/run/closures_T82.pyx +++ b/tests/run/closures_T82.pyx @@ -1,3 +1,5 @@ +# mode: run +# tag: closures # ticket: 82 cimport cython diff --git a/tests/run/list_comp_in_closure_T598.pyx b/tests/run/list_comp_in_closure_T598.pyx index fceffd56..3f418add 100644 --- a/tests/run/list_comp_in_closure_T598.pyx +++ b/tests/run/list_comp_in_closure_T598.pyx @@ -1,3 +1,5 @@ +# mode: run +# tag: closures # ticket: 598 # cython: language_level=3 -- 2.26.2