summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-03-01 10:56:35 +0200
committerEzio Melotti <ezio.melotti@gmail.com>2013-03-01 10:56:35 +0200
commit6cc46d35f1335e513238ba831df9d82ddc81b9d9 (patch)
treead39fabd5814ec627d124cef938b2f5421179716
parenta2f94aa0bf6d4acfba188ca2493d4ecffb30eab4 (diff)
parent520378f81d30105d421e7b3a53c30fb0346be269 (diff)
downloadcpython-git-6cc46d35f1335e513238ba831df9d82ddc81b9d9.tar.gz
#17079: merge with 3.3.
-rw-r--r--Lib/test/test_ctypes.py8
-rw-r--r--Misc/NEWS3
2 files changed, 7 insertions, 4 deletions
diff --git a/Lib/test/test_ctypes.py b/Lib/test/test_ctypes.py
index 7d9abdcba7..496355e61d 100644
--- a/Lib/test/test_ctypes.py
+++ b/Lib/test/test_ctypes.py
@@ -1,16 +1,16 @@
import unittest
-from test.support import run_unittest, import_module
+from test.support import import_module
# Skip tests if _ctypes module was not built.
import_module('_ctypes')
import ctypes.test
-def test_main():
+def load_tests(*args):
skipped, testcases = ctypes.test.get_tests(ctypes.test, "test_*.py", verbosity=0)
suites = [unittest.makeSuite(t) for t in testcases]
- run_unittest(unittest.TestSuite(suites))
+ return unittest.TestSuite(suites)
if __name__ == "__main__":
- test_main()
+ unittest.main()
diff --git a/Misc/NEWS b/Misc/NEWS
index 9e284515a6..1c5f3b395b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -896,6 +896,9 @@ Tests
- Issue #16836: Enable IPv6 support even if IPv6 is disabled on the build host.
+- Issue #17079: test_ctypes now works with unittest test discovery.
+ Patch by Zachary Ware.
+
- Issue #17304: test_hash now works with unittest test discovery.
Patch by Zachary Ware.