Home | History | Annotate | Download | only in test
      1 import unittest
      2 
      3 from test.test_support import run_unittest, import_module
      4 #Skip tests if _ctypes module does not exist

      5 import_module('_ctypes')
      6 
      7 
      8 def test_main():
      9     import ctypes.test
     10     skipped, testcases = ctypes.test.get_tests(ctypes.test, "test_*.py", verbosity=0)
     11     suites = [unittest.makeSuite(t) for t in testcases]
     12     run_unittest(unittest.TestSuite(suites))
     13 
     14 if __name__ == "__main__":
     15     test_main()
     16