summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-06-13 18:44:39 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-06-13 18:44:39 (GMT)
commit9422df0924e79445ad6fa7e89e02513932112276 (patch)
tree9e92acc1cdaca4c1a2225acb7d543bc8b9efcc00 /Misc
parentbc7c96b9ea64f4af3cb342725ebdff2abe6058ea (diff)
downloadcpython-9422df0924e79445ad6fa7e89e02513932112276.zip
cpython-9422df0924e79445ad6fa7e89e02513932112276.tar.gz
cpython-9422df0924e79445ad6fa7e89e02513932112276.tar.bz2
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.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4dbcc8c..2f4b0ed 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -95,6 +95,9 @@ IDLE
Tests
-----
+- Issue #19493: Refactored the ctypes test package to skip tests explicitly
+ rather than silently.
+
- Issue #18492: All resources are now allowed when tests are not run by
regrtest.py.