add: ARM64 stack and CPU context support (#21)

This commit is contained in:
Aleksey R 2018-07-13 17:12:48 +03:00
parent b21372d9b6
commit 5c0f0984e9
3 changed files with 4 additions and 1 deletions

@ -1 +1 @@
Subproject commit a2b365c085304ca831de96f7816e2d4ebcc5b8cd
Subproject commit 5c18bdf2cff64c2e65ebbfa34d0e5cfed8c63d7d

View File

@ -28,6 +28,7 @@ import targetprocess
import ehloadtest
import synsymtest
import taggedtest
import arm64dumptest
pykd.initialize()
@ -67,6 +68,7 @@ def getTestSuite( singleName = "" ):
unittest.TestLoader().loadTestsFromTestCase( targetprocess.ProcessTest ),
unittest.TestLoader().loadTestsFromTestCase( ehloadtest.EhLoadTest ),
unittest.TestLoader().loadTestsFromTestCase( taggedtest.TaggedTest ),
unittest.TestLoader().loadTestsFromTestCase( arm64dumptest.ARM64DumpTest ),
#unittest.TestLoader().loadTestsFromTestCase( excepttest.ExceptionTest ),
] )

View File

@ -30,6 +30,7 @@
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
</PropertyGroup>
<ItemGroup>
<Compile Include="arm64dumptest.py" />
<Compile Include="basetest.py" />
<Compile Include="breakpoint.py" />
<Compile Include="clienttest.py" />