Skip to content

Commit

Permalink
Merge pull request #855 from PraveenPenguin/add_iist
Browse files Browse the repository at this point in the history
Added ISST dump coverage
  • Loading branch information
abdhaleegit authored Jul 1, 2024
2 parents 58a8c79 + f0c8243 commit 66bee85
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions op-test
Original file line number Diff line number Diff line change
Expand Up @@ -689,6 +689,32 @@ class OSdumpkdumpSuite():
def suite(self):
return self.s

class ISSTkdumpSuite():
'''Crash Test Suite which Verify operating System Crash Dump Functionality'''
def __init__(self):
self.s = unittest.TestSuite()
self.s.addTest(PowerNVDump.KernelCrash_OnlyKdumpEnable())
if 'dev_path' in OpTestConfiguration.conf.args:
self.s.addTest(PowerNVDump.KernelCrash_KdumpSAN())
self.s.addTest(PowerNVDump.OpTestMakedump())
self.s.addTest(PowerNVDump.KernelCrash_KdumpSSH())
self.s.addTest(PowerNVDump.KernelCrash_KdumpNFS())

def suite(self):
return self.s

class ISSTfadumpSuite():
'''Crash Test Suite which Verify operating System Crash Dump Functionality'''
def __init__(self):
self.s = unittest.TestSuite()
self.s.addTest(PowerNVDump.KernelCrash_FadumpEnable())
self.s.addTest(PowerNVDump.OpTestMakedump())
self.s.addTest(PowerNVDump.KernelCrash_KdumpSSH())
self.s.addTest(PowerNVDump.KernelCrash_KdumpNFS())

def suite(self):
return self.s

class OSdumpfadumpSuite():
'''Crash Test Suite which Verify operating System Crash Dump Functionality'''
def __init__(self):
Expand Down Expand Up @@ -984,6 +1010,8 @@ suites = {
'osdumpkdumpsuite': OSdumpkdumpSuite(),
'osdumpfadumpsuite': OSdumpfadumpSuite(),
'osdumpsanitysuite': OSdumpsanitySuite(),
'ISSTkdumpSuite': ISSTkdumpSuite(),
'ISSTkdumpSuite':ISSTfadumpSuite(),
'dlpario-suite': DlparIOSuite(),
'lpm-suite': LPMSuite(),
'GuestSecureBootSuite': GuestSecureBootSuite(),
Expand Down

0 comments on commit 66bee85

Please sign in to comment.