mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 19:53:22 +08:00
[0.1.x] ~fixed comment
git-svn-id: https://pykd.svn.codeplex.com/svn@72724 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
parent
251a01d7e8
commit
0f1d3aa124
@ -14,11 +14,11 @@ class DbgClientTest( unittest.TestCase ):
|
|||||||
self.assertFalse( pykd.isKernelDebugging() )
|
self.assertFalse( pykd.isKernelDebugging() )
|
||||||
|
|
||||||
def testNumberProcessors( self ):
|
def testNumberProcessors( self ):
|
||||||
"""Number of processors mus be >= 0"""
|
"""Number of processors can not be 0"""
|
||||||
self.assertNotEqual( 0, pykd.getNumberProcessors() )
|
self.assertNotEqual( 0, pykd.getNumberProcessors() )
|
||||||
|
|
||||||
def testPageSize( self ):
|
def testPageSize( self ):
|
||||||
"""Size of memory page mus be >= 4kb"""
|
"""Size of memory page must be >= 4kb"""
|
||||||
self.assertTrue( pykd.getPageSize() >= 4*1024 )
|
self.assertTrue( pykd.getPageSize() >= 4*1024 )
|
||||||
|
|
||||||
def testIsDumpAnalyzing( self ):
|
def testIsDumpAnalyzing( self ):
|
||||||
|
Loading…
Reference in New Issue
Block a user