mirror of
https://github.com/hakril/PythonForWindows
synced 2026-06-08 14:31:45 +00:00
Updated TODO and test for CreateFile error_check fix
This commit is contained in:
@@ -7,7 +7,4 @@ FIXME:
|
||||
- WMI
|
||||
- COM initialisation when injected in another process
|
||||
- The CoInitialize might be already called
|
||||
- Fix that
|
||||
|
||||
- Add INVALID_HANDLE_VALUE to windef
|
||||
- change error_check of CreateFile(A|W)
|
||||
- Fix that
|
||||
@@ -1,3 +1,3 @@
|
||||
from mytest import WindowsTestCase, pop_calc_32, pop_calc_64, Calc32, Calc64
|
||||
from mytest import WindowsTestCase, WindowsAPITestCase, pop_calc_32, pop_calc_64, Calc32, Calc64
|
||||
|
||||
__all__ = ["WindowsTestCase"]
|
||||
__all__ = ["WindowsTestCase", "WindowsAPITestCase"]
|
||||
|
||||
@@ -293,7 +293,8 @@ class WindowsAPITestCase(unittest.TestCase):
|
||||
|
||||
if __name__ == '__main__':
|
||||
alltests = unittest.TestSuite()
|
||||
alltests.addTest(unittest.makeSuite(WindowsTestCase), unittest.makeSuite(WindowsAPITestCase))
|
||||
alltests.addTest(unittest.makeSuite(WindowsTestCase))
|
||||
alltests.addTest(unittest.makeSuite(WindowsAPITestCase))
|
||||
alltests.debug()
|
||||
tester = unittest.TextTestRunner(verbosity=2)
|
||||
tester.run(alltests)
|
||||
|
||||
Reference in New Issue
Block a user