]> granicus.if.org Git - python/commit
Issue #19493: Refactor ctypes test package.
authorZachary Ware <zachary.ware@gmail.com>
Fri, 13 Jun 2014 18:44:39 +0000 (13:44 -0500)
committerZachary Ware <zachary.ware@gmail.com>
Fri, 13 Jun 2014 18:44:39 +0000 (13:44 -0500)
commit9422df0924e79445ad6fa7e89e02513932112276
tree9e92acc1cdaca4c1a2225acb7d543bc8b9efcc00
parentbc7c96b9ea64f4af3cb342725ebdff2abe6058ea
Issue #19493: Refactor ctypes test package.

Skipped tests are now marked as skipped, formerly commented-out or
renamed-so-it-doesn't-look-like-a-test tests are uncommented, properly named,
and unconditionally skipped, some tests that simply didn't run before
are now able to run, and a few are split into multiple methods instead of
skipping via 'return' in the middle of a method.  Also, a couple of unused
files are removed completely.
33 files changed:
Lib/ctypes/test/__init__.py
Lib/ctypes/test/test_arrays.py
Lib/ctypes/test/test_as_parameter.py
Lib/ctypes/test/test_bitfields.py
Lib/ctypes/test/test_buffers.py
Lib/ctypes/test/test_bytes.py
Lib/ctypes/test/test_byteswap.py
Lib/ctypes/test/test_callbacks.py
Lib/ctypes/test/test_cast.py
Lib/ctypes/test/test_cfuncs.py
Lib/ctypes/test/test_checkretval.py
Lib/ctypes/test/test_errcheck.py [deleted file]
Lib/ctypes/test/test_find.py
Lib/ctypes/test/test_functions.py
Lib/ctypes/test/test_integers.py [deleted file]
Lib/ctypes/test/test_keeprefs.py
Lib/ctypes/test/test_loading.py
Lib/ctypes/test/test_macholib.py
Lib/ctypes/test/test_memfunctions.py
Lib/ctypes/test/test_numbers.py
Lib/ctypes/test/test_objects.py
Lib/ctypes/test/test_parameters.py
Lib/ctypes/test/test_prototypes.py
Lib/ctypes/test/test_python_api.py
Lib/ctypes/test/test_random_things.py
Lib/ctypes/test/test_slicing.py
Lib/ctypes/test/test_strings.py
Lib/ctypes/test/test_structures.py
Lib/ctypes/test/test_unicode.py
Lib/ctypes/test/test_values.py
Lib/ctypes/test/test_win32.py
Lib/ctypes/test/test_wintypes.py
Misc/NEWS