Author: Ronan Lamy <ronan.l...@gmail.com> Branch: cleanup-test_lib_pypy Changeset: r95464:d752b7ef5622 Date: 2018-12-12 21:10 +0000 http://bitbucket.org/pypy/pypy/changeset/d752b7ef5622/
Log: Move ctypes_tests to extra_tests/ diff --git a/pypy/module/test_lib_pypy/ctypes_tests/README b/extra_tests/ctypes_tests/README rename from pypy/module/test_lib_pypy/ctypes_tests/README rename to extra_tests/ctypes_tests/README diff --git a/pypy/module/test_lib_pypy/ctypes_tests/__init__.py b/extra_tests/ctypes_tests/__init__.py rename from pypy/module/test_lib_pypy/ctypes_tests/__init__.py rename to extra_tests/ctypes_tests/__init__.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/_ctypes_test.c b/extra_tests/ctypes_tests/_ctypes_test.c rename from pypy/module/test_lib_pypy/ctypes_tests/_ctypes_test.c rename to extra_tests/ctypes_tests/_ctypes_test.c diff --git a/pypy/module/test_lib_pypy/ctypes_tests/conftest.py b/extra_tests/ctypes_tests/conftest.py rename from pypy/module/test_lib_pypy/ctypes_tests/conftest.py rename to extra_tests/ctypes_tests/conftest.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/description.txt b/extra_tests/ctypes_tests/description.txt rename from pypy/module/test_lib_pypy/ctypes_tests/description.txt rename to extra_tests/ctypes_tests/description.txt diff --git a/pypy/module/test_lib_pypy/ctypes_tests/support.py b/extra_tests/ctypes_tests/support.py rename from pypy/module/test_lib_pypy/ctypes_tests/support.py rename to extra_tests/ctypes_tests/support.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_anon.py b/extra_tests/ctypes_tests/test_anon.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_anon.py rename to extra_tests/ctypes_tests/test_anon.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_array.py b/extra_tests/ctypes_tests/test_array.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_array.py rename to extra_tests/ctypes_tests/test_array.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_base.py b/extra_tests/ctypes_tests/test_base.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_base.py rename to extra_tests/ctypes_tests/test_base.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_bitfields.py b/extra_tests/ctypes_tests/test_bitfields.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_bitfields.py rename to extra_tests/ctypes_tests/test_bitfields.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_buffers.py b/extra_tests/ctypes_tests/test_buffers.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_buffers.py rename to extra_tests/ctypes_tests/test_buffers.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_callback_traceback.py b/extra_tests/ctypes_tests/test_callback_traceback.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_callback_traceback.py rename to extra_tests/ctypes_tests/test_callback_traceback.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_callbacks.py b/extra_tests/ctypes_tests/test_callbacks.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_callbacks.py rename to extra_tests/ctypes_tests/test_callbacks.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_cast.py b/extra_tests/ctypes_tests/test_cast.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_cast.py rename to extra_tests/ctypes_tests/test_cast.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_commethods.py b/extra_tests/ctypes_tests/test_commethods.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_commethods.py rename to extra_tests/ctypes_tests/test_commethods.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_errno.py b/extra_tests/ctypes_tests/test_errno.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_errno.py rename to extra_tests/ctypes_tests/test_errno.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_extra.py b/extra_tests/ctypes_tests/test_extra.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_extra.py rename to extra_tests/ctypes_tests/test_extra.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_funcptr.py b/extra_tests/ctypes_tests/test_funcptr.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_funcptr.py rename to extra_tests/ctypes_tests/test_funcptr.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_functions.py b/extra_tests/ctypes_tests/test_functions.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_functions.py rename to extra_tests/ctypes_tests/test_functions.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_guess_argtypes.py b/extra_tests/ctypes_tests/test_guess_argtypes.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_guess_argtypes.py rename to extra_tests/ctypes_tests/test_guess_argtypes.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_keepalive.py b/extra_tests/ctypes_tests/test_keepalive.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_keepalive.py rename to extra_tests/ctypes_tests/test_keepalive.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_loading.py b/extra_tests/ctypes_tests/test_loading.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_loading.py rename to extra_tests/ctypes_tests/test_loading.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_numbers.py b/extra_tests/ctypes_tests/test_numbers.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_numbers.py rename to extra_tests/ctypes_tests/test_numbers.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_parameters.py b/extra_tests/ctypes_tests/test_parameters.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_parameters.py rename to extra_tests/ctypes_tests/test_parameters.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_pointers.py b/extra_tests/ctypes_tests/test_pointers.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_pointers.py rename to extra_tests/ctypes_tests/test_pointers.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_prototypes.py b/extra_tests/ctypes_tests/test_prototypes.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_prototypes.py rename to extra_tests/ctypes_tests/test_prototypes.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_structures.py b/extra_tests/ctypes_tests/test_structures.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_structures.py rename to extra_tests/ctypes_tests/test_structures.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_unions.py b/extra_tests/ctypes_tests/test_unions.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_unions.py rename to extra_tests/ctypes_tests/test_unions.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_values.py b/extra_tests/ctypes_tests/test_values.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_values.py rename to extra_tests/ctypes_tests/test_values.py diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_win32.py b/extra_tests/ctypes_tests/test_win32.py rename from pypy/module/test_lib_pypy/ctypes_tests/test_win32.py rename to extra_tests/ctypes_tests/test_win32.py _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit