From: Robert Bradshaw Date: Fri, 17 Apr 2009 02:10:51 +0000 (-0700) Subject: move stuff out of tests/bugs directory X-Git-Tag: 0.11.2.rc1~63 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=21aa32a8e68047c1bd9f00ed359a3c307208f668;p=cython.git move stuff out of tests/bugs directory --HG-- rename : tests/bugs/bad_c_struct_T252.pyx => tests/compile/bad_c_struct_T252.pyx rename : tests/bugs/pxd_override_T230.pxd => tests/compile/pxd_override_T230.pxd rename : tests/bugs/pxd_override_T230.py => tests/compile/pxd_override_T230.py rename : tests/bugs/missing_baseclass_in_predecl_T262.pyx => tests/errors/missing_baseclass_in_predecl_T262.pyx rename : tests/bugs/return_outside_function_T135.pyx => tests/errors/return_outside_function_T135.pyx rename : tests/bugs/builtin_types_none_T166.pyx => tests/run/builtin_types_none_T166.pyx rename : tests/bugs/char_constants_T99.pyx => tests/run/char_constants_T99.pyx rename : tests/bugs/class_attribute_init_values_T18.pyx => tests/run/class_attribute_init_values_T18.pyx rename : tests/bugs/ext_instance_type_T232.pyx => tests/run/ext_instance_type_T232.pyx rename : tests/bugs/funcexc_iter_T228.pyx => tests/run/funcexc_iter_T228.pyx rename : tests/bugs/ifelseexpr_T267.pyx => tests/run/ifelseexpr_T267.pyx rename : tests/bugs/large_consts_T237.pyx => tests/run/large_consts_T237.pyx rename : tests/bugs/methodmangling_T5.pyx => tests/run/methodmangling_T5.pyx rename : tests/bugs/numpy_ValueError_T172.pyx => tests/run/numpy_ValueError_T172.pyx rename : tests/bugs/unsignedbehaviour_T184.pyx => tests/run/unsignedbehaviour_T184.pyx --- diff --git a/tests/bugs.txt b/tests/bugs.txt new file mode 100644 index 00000000..ce41eb17 --- /dev/null +++ b/tests/bugs.txt @@ -0,0 +1,16 @@ +# This file contains tests corresponding to of unresolved bugs, +# which will be skipped in the normal testing run. + +methodmangling_T5 +class_attribute_init_values_T18 +return_outside_function_T135 +builtin_types_none_T166 +numpy_ValueError_T172 +unsignedbehaviour_T184 +funcexc_iter_T228 +pxd_override_T230 +ext_instance_type_T232 +large_consts_T237 +bad_c_struct_T252 +missing_baseclass_in_predecl_T262 +ifelseexpr_T267 diff --git a/tests/bugs/bad_c_struct_T252.pyx b/tests/compile/bad_c_struct_T252.pyx similarity index 100% rename from tests/bugs/bad_c_struct_T252.pyx rename to tests/compile/bad_c_struct_T252.pyx diff --git a/tests/bugs/pxd_override_T230.pxd b/tests/compile/pxd_override_T230.pxd similarity index 100% rename from tests/bugs/pxd_override_T230.pxd rename to tests/compile/pxd_override_T230.pxd diff --git a/tests/bugs/pxd_override_T230.py b/tests/compile/pxd_override_T230.py similarity index 100% rename from tests/bugs/pxd_override_T230.py rename to tests/compile/pxd_override_T230.py diff --git a/tests/bugs/missing_baseclass_in_predecl_T262.pyx b/tests/errors/missing_baseclass_in_predecl_T262.pyx similarity index 100% rename from tests/bugs/missing_baseclass_in_predecl_T262.pyx rename to tests/errors/missing_baseclass_in_predecl_T262.pyx diff --git a/tests/bugs/return_outside_function_T135.pyx b/tests/errors/return_outside_function_T135.pyx similarity index 100% rename from tests/bugs/return_outside_function_T135.pyx rename to tests/errors/return_outside_function_T135.pyx diff --git a/tests/bugs/builtin_types_none_T166.pyx b/tests/run/builtin_types_none_T166.pyx similarity index 100% rename from tests/bugs/builtin_types_none_T166.pyx rename to tests/run/builtin_types_none_T166.pyx diff --git a/tests/bugs/char_constants_T99.pyx b/tests/run/char_constants_T99.pyx similarity index 100% rename from tests/bugs/char_constants_T99.pyx rename to tests/run/char_constants_T99.pyx diff --git a/tests/bugs/class_attribute_init_values_T18.pyx b/tests/run/class_attribute_init_values_T18.pyx similarity index 100% rename from tests/bugs/class_attribute_init_values_T18.pyx rename to tests/run/class_attribute_init_values_T18.pyx diff --git a/tests/bugs/ext_instance_type_T232.pyx b/tests/run/ext_instance_type_T232.pyx similarity index 100% rename from tests/bugs/ext_instance_type_T232.pyx rename to tests/run/ext_instance_type_T232.pyx diff --git a/tests/bugs/funcexc_iter_T228.pyx b/tests/run/funcexc_iter_T228.pyx similarity index 100% rename from tests/bugs/funcexc_iter_T228.pyx rename to tests/run/funcexc_iter_T228.pyx diff --git a/tests/bugs/ifelseexpr_T267.pyx b/tests/run/ifelseexpr_T267.pyx similarity index 100% rename from tests/bugs/ifelseexpr_T267.pyx rename to tests/run/ifelseexpr_T267.pyx diff --git a/tests/bugs/large_consts_T237.pyx b/tests/run/large_consts_T237.pyx similarity index 100% rename from tests/bugs/large_consts_T237.pyx rename to tests/run/large_consts_T237.pyx diff --git a/tests/bugs/methodmangling_T5.pyx b/tests/run/methodmangling_T5.pyx similarity index 100% rename from tests/bugs/methodmangling_T5.pyx rename to tests/run/methodmangling_T5.pyx diff --git a/tests/bugs/numpy_ValueError_T172.pyx b/tests/run/numpy_ValueError_T172.pyx similarity index 100% rename from tests/bugs/numpy_ValueError_T172.pyx rename to tests/run/numpy_ValueError_T172.pyx diff --git a/tests/bugs/unsignedbehaviour_T184.pyx b/tests/run/unsignedbehaviour_T184.pyx similarity index 100% rename from tests/bugs/unsignedbehaviour_T184.pyx rename to tests/run/unsignedbehaviour_T184.pyx