diff options
Diffstat (limited to 'test/sanity_run_vpp.py')
-rw-r--r-- | test/sanity_run_vpp.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/sanity_run_vpp.py b/test/sanity_run_vpp.py index b923c791b61..5e2b3c1f92b 100644 --- a/test/sanity_run_vpp.py +++ b/test/sanity_run_vpp.py @@ -8,7 +8,8 @@ from framework import VppDiedError, VppTestCase, KeepAliveReporter class SanityTestCase(VppTestCase): - """ Sanity test case - verify whether VPP is able to start """ + """Sanity test case - verify whether VPP is able to start""" + cpus = [0] # don't ask to debug SanityTestCase @@ -43,11 +44,11 @@ def main(): y.close() if rc == 0: - print('Sanity test case passed.') + print("Sanity test case passed.") else: - print('Sanity test case failed.') + print("Sanity test case failed.") return rc -if __name__ == '__main__': +if __name__ == "__main__": sys.exit(main()) |