From db521b8c7a4047fac5d9672261caa35900595a93 Mon Sep 17 00:00:00 2001 From: "SND\\ussrhero_cp" Date: Sun, 23 Jul 2017 19:33:14 +0000 Subject: [PATCH] [0.3.x] updated : version set to 0.3.1.8 git-svn-id: https://pykd.svn.codeplex.com/svn@91248 9b283d60-5439-405e-af05-b73fd8c4d996 --- pykd/pykdver.h | 2 +- test/scripts/typedvar.py | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/pykd/pykdver.h b/pykd/pykdver.h index 9e43c01..29494af 100644 --- a/pykd/pykdver.h +++ b/pykd/pykdver.h @@ -2,7 +2,7 @@ #define PYKD_VERSION_MAJOR 0 #define PYKD_VERSION_MINOR 3 #define PYKD_VERSION_SUBVERSION 2 -#define PYKD_VERSION_BUILDNO 7 +#define PYKD_VERSION_BUILDNO 8 #define __VER_STR2__(x) #x #define __VER_STR1__(x) __VER_STR2__(x) diff --git a/test/scripts/typedvar.py b/test/scripts/typedvar.py index 43ed55d..7c916fa 100644 --- a/test/scripts/typedvar.py +++ b/test/scripts/typedvar.py @@ -114,15 +114,6 @@ class TypedVarTest( unittest.TestCase ): tv = target.module.typedVar( "g_structWithArray" ) self.assertEqual([0, 2], [x for x in tv.m_arrayField]) - - #def testArrayFieldSlice(self): - # tv = target.module.typedVar( "g_structWithArray" ) - # self.assertEqual( [ 0, 2 ], tv.m_arrayField[0:2] ) - - #def testArrayFieldSliceNegative(self): - # tv = target.module.typedVar( "g_structWithArray" ) - # self.assertEqual( 2, tv.m_arrayField[-1] ) - def testGlobalVar(self): self.assertEqual( 10002000, target.module.typedVar( "ulongVar" ) ) self.assertEqual( 0x80000000, target.module.typedVar( "ulongArray" )[3] )