Commit e317d0e3 authored by Thomas Heller's avatar Thomas Heller

Replace the trivial ctypes test (did only an import) with the real test suite.

parent 72c2c062
# trivial test import unittest
import _ctypes from test.test_support import run_suite
import ctypes import ctypes.test
def test_main():
skipped, testcases = ctypes.test.get_tests(ctypes.test, "test_*.py", verbosity=0)
suites = [unittest.makeSuite(t) for t in testcases]
run_suite(unittest.TestSuite(suites))
if __name__ == "__main__":
test_main()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment