From 21aa32a8e68047c1bd9f00ed359a3c307208f668 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Thu, 16 Apr 2009 19:10:51 -0700 Subject: [PATCH] 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 --- tests/bugs.txt | 16 ++++++++++++++++ tests/{bugs => compile}/bad_c_struct_T252.pyx | 0 tests/{bugs => compile}/pxd_override_T230.pxd | 0 tests/{bugs => compile}/pxd_override_T230.py | 0 .../missing_baseclass_in_predecl_T262.pyx | 0 .../return_outside_function_T135.pyx | 0 tests/{bugs => run}/builtin_types_none_T166.pyx | 0 tests/{bugs => run}/char_constants_T99.pyx | 0 .../class_attribute_init_values_T18.pyx | 0 tests/{bugs => run}/ext_instance_type_T232.pyx | 0 tests/{bugs => run}/funcexc_iter_T228.pyx | 0 tests/{bugs => run}/ifelseexpr_T267.pyx | 0 tests/{bugs => run}/large_consts_T237.pyx | 0 tests/{bugs => run}/methodmangling_T5.pyx | 0 tests/{bugs => run}/numpy_ValueError_T172.pyx | 0 tests/{bugs => run}/unsignedbehaviour_T184.pyx | 0 16 files changed, 16 insertions(+) create mode 100644 tests/bugs.txt rename tests/{bugs => compile}/bad_c_struct_T252.pyx (100%) rename tests/{bugs => compile}/pxd_override_T230.pxd (100%) rename tests/{bugs => compile}/pxd_override_T230.py (100%) rename tests/{bugs => errors}/missing_baseclass_in_predecl_T262.pyx (100%) rename tests/{bugs => errors}/return_outside_function_T135.pyx (100%) rename tests/{bugs => run}/builtin_types_none_T166.pyx (100%) rename tests/{bugs => run}/char_constants_T99.pyx (100%) rename tests/{bugs => run}/class_attribute_init_values_T18.pyx (100%) rename tests/{bugs => run}/ext_instance_type_T232.pyx (100%) rename tests/{bugs => run}/funcexc_iter_T228.pyx (100%) rename tests/{bugs => run}/ifelseexpr_T267.pyx (100%) rename tests/{bugs => run}/large_consts_T237.pyx (100%) rename tests/{bugs => run}/methodmangling_T5.pyx (100%) rename tests/{bugs => run}/numpy_ValueError_T172.pyx (100%) rename tests/{bugs => run}/unsignedbehaviour_T184.pyx (100%) 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 -- 2.26.2