mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-29 20:03:33 +08:00
[0.2.x] added : typedVarList can get nested field name ( "field.next" )
git-svn-id: https://pykd.svn.codeplex.com/svn@82564 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
parent
f5ee8b9a9a
commit
386c120795
@ -565,8 +565,8 @@ BOOST_PYTHON_MODULE( pykd )
|
|||||||
.def( "ea", &Disasm::ea, "Return effective address for last disassembled instruction or 0" )
|
.def( "ea", &Disasm::ea, "Return effective address for last disassembled instruction or 0" )
|
||||||
.def( "reset", &Disasm::reset, "Reset current offset to begin" )
|
.def( "reset", &Disasm::reset, "Reset current offset to begin" )
|
||||||
.def( "findOffset", &Disasm::getNearInstruction, "Return the location of a processor instruction relative to a given location" )
|
.def( "findOffset", &Disasm::getNearInstruction, "Return the location of a processor instruction relative to a given location" )
|
||||||
.def( "jump", &Disasm::jump, "Change current instruction" )
|
.def( "jump", &Disasm::jump, "Change the current instruction" )
|
||||||
.def( "jumprel", &Disasm::jumprel, "Change current instruction" );
|
.def( "jumprel", &Disasm::jumprel, "Change the current instruction" );
|
||||||
|
|
||||||
|
|
||||||
python::enum_<DEBUG_CALLBACK_RESULT>("eventResult", "Return value of event handler")
|
python::enum_<DEBUG_CALLBACK_RESULT>("eventResult", "Return value of event handler")
|
||||||
|
@ -71,7 +71,7 @@ if __name__ == "__main__":
|
|||||||
#print "Test module: %s" % target.appPath
|
#print "Test module: %s" % target.appPath
|
||||||
|
|
||||||
unittest.TextTestRunner(stream=sys.stdout, verbosity=2).run( getTestSuite() )
|
unittest.TextTestRunner(stream=sys.stdout, verbosity=2).run( getTestSuite() )
|
||||||
#unittest.TextTestRunner(stream=sys.stdout, verbosity=2).run( getTestSuite("typedvar.TypedVarTest.testAmbiguousFieldAccess") )
|
#unittest.TextTestRunner(stream=sys.stdout, verbosity=2).run( getTestSuite("customtypestest.CustomTypesTest.testPtrToCustomType") )
|
||||||
|
|
||||||
raw_input(">")
|
raw_input(">")
|
||||||
#
|
#
|
Loading…
Reference in New Issue
Block a user