From b7a7f97ea49d97894970f303b6aaa4437e878c5b Mon Sep 17 00:00:00 2001 From: "SND\\EreTIk_cp" <SND\EreTIk_cp@9b283d60-5439-405e-af05-b73fd8c4d996> Date: Fri, 23 Nov 2012 09:55:17 +0000 Subject: [PATCH] [0.2.x] + failed test: pointer to basic type (typeInfo ctor) git-svn-id: https://pykd.svn.codeplex.com/svn@81388 9b283d60-5439-405e-af05-b73fd8c4d996 --- test/scripts/typeinfo.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/scripts/typeinfo.py b/test/scripts/typeinfo.py index db56f4c..db8ffc3 100644 --- a/test/scripts/typeinfo.py +++ b/test/scripts/typeinfo.py @@ -17,6 +17,8 @@ class TypeInfoTest( unittest.TestCase ): def testCreateByName( self ): """ creating typeInfo by the type name """ + self.assertEqual( "Int4B*", target.module.type("Int4B*").name() ) + self.assertEqual( "Int4B*", pykd.typeInfo("Int4B*").name() ) self.assertEqual( "structTest", target.module.type( "structTest" ).name() ) self.assertEqual( "structTest**", target.module.type( "structTest**" ).name() ) self.assertEqual( "Int4B[2][3]", target.module.type("Int4B[2][3]").name() )