X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fsanity_run_vpp.py;h=4b21de12dfed2419bb7053b704462b4fad5a942b;hb=c99ab12cbb9252806db55f7a79e5d84b41df3525;hp=5eb68853b1f6fe142c12dda22902d85804a43862;hpb=c701e5718201fbfb205998343da70c816c57795f;p=vpp.git diff --git a/test/sanity_run_vpp.py b/test/sanity_run_vpp.py index 5eb68853b1f..4b21de12dfe 100644 --- a/test/sanity_run_vpp.py +++ b/test/sanity_run_vpp.py @@ -9,7 +9,7 @@ from framework import VppDiedError, VppTestCase, KeepAliveReporter class SanityTestCase(VppTestCase): """ Sanity test case - verify whether VPP is able to start """ - pass + cpus = [0] # don't ask to debug SanityTestCase @classmethod @@ -43,8 +43,8 @@ if __name__ == '__main__': y.close() if rc == 0: - print('Sanity test case passed.\n') + print('Sanity test case passed.') else: - print('Sanity test case failed.\n') + print('Sanity test case failed.') sys.exit(rc)