We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 97a7848 + e324ae7 commit c0c70bfCopy full SHA for c0c70bf
op-test
@@ -364,6 +364,15 @@ class BasicIPLSuite():
364
def suite(self):
365
return BasicIPL.suite()
366
367
+class KernelArgsSuite():
368
+ '''Passing the Kernel comdline argument'''
369
+ def __init__(self):
370
+ self.s = unittest.TestSuite()
371
+ self.s.addTest(OpTestKernelArg.OpTestKernelArg())
372
+ self.s.addTest(RunHostTest.RunHostTest())
373
+
374
+ def suite(self):
375
+ return self.s
376
377
class SBSuite():
378
'''Secure boot tests'''
@@ -1029,6 +1038,7 @@ suites = {
1029
1038
'per-commit': OpTestPerCommitSuite(),
1030
1039
'pull-request': OpTestPullRequestSuite(),
1031
1040
'kexec-suite': KexecSuite(),
1041
+ 'KernelArgsSuite': KernelArgsSuite(),
1032
1042
}
1033
1043
1034
1044
try:
0 commit comments