Updated TODO and test for CreateFile error_check fix

This commit is contained in:
hakril
2016-01-13 23:43:04 +01:00
parent c35e517b35
commit fad8121cbf
3 changed files with 5 additions and 7 deletions
+1 -4
View File
@@ -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
+2 -2
View File
@@ -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"]
+2 -1
View File
@@ -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)