From 386c120795a00a9d4f22dd12af11f68022fc57e4 Mon Sep 17 00:00:00 2001 From: "SND\\kernelnet_cp" Date: Wed, 6 Feb 2013 07:52:13 +0000 Subject: [PATCH] [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 --- pykd/python/pymod.cpp | 4 ++-- test/scripts/pykdtest.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pykd/python/pymod.cpp b/pykd/python/pymod.cpp index f81908a..5e5a109 100644 --- a/pykd/python/pymod.cpp +++ b/pykd/python/pymod.cpp @@ -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_("eventResult", "Return value of event handler") diff --git a/test/scripts/pykdtest.py b/test/scripts/pykdtest.py index 196a7d5..830857d 100644 --- a/test/scripts/pykdtest.py +++ b/test/scripts/pykdtest.py @@ -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(">") # \ No newline at end of file