X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fsanity_run_vpp.py;h=933e3a719fc14ff5b27f1f64dd8f668ca8798e70;hb=refs%2Fchanges%2F24%2F16024%2F4;hp=012b16db154ca46457a97c66a7794a13fe768e72;hpb=2152e1cf8b3420d94ba31fe25853977ad945f35a;p=vpp.git diff --git a/test/sanity_run_vpp.py b/test/sanity_run_vpp.py index 012b16db154..933e3a719fc 100644 --- a/test/sanity_run_vpp.py +++ b/test/sanity_run_vpp.py @@ -8,7 +8,7 @@ from framework import VppTestCase, KeepAliveReporter class SanityTestCase(VppTestCase): - """ Sanity test case - verify if VPP is able to start """ + """ Sanity test case - verify thether VPP is able to start """ pass if __name__ == '__main__': @@ -29,4 +29,9 @@ if __name__ == '__main__': x.close() y.close() + if rc == 0: + print('Sanity test case passed\n') + else: + print('Sanity test case failed\n') + exit(rc)