[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:
SND\kernelnet_cp 2013-02-06 07:52:13 +00:00 committed by Mikhail I. Izmestev
parent f5ee8b9a9a
commit 386c120795
2 changed files with 3 additions and 3 deletions
pykd/python
test/scripts

View File

@ -565,8 +565,8 @@ BOOST_PYTHON_MODULE( pykd )
.def( "ea", &Disasm::ea, "Return effective address for last disassembled instruction or 0" )
.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( "jump", &Disasm::jump, "Change current instruction" )
.def( "jumprel", &Disasm::jumprel, "Change current instruction" );
.def( "jump", &Disasm::jump, "Change the current instruction" )
.def( "jumprel", &Disasm::jumprel, "Change the current instruction" );
python::enum_<DEBUG_CALLBACK_RESULT>("eventResult", "Return value of event handler")

View File

@ -71,7 +71,7 @@ if __name__ == "__main__":
#print "Test module: %s" % target.appPath
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(">")
#