X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fsanity_run_vpp.py;h=d1c29877b9b1e9c12aaf92b3a62d9f011c1d84af;hb=7c03ed4;hp=156608c104a9e53c780d3abb1f10436404846697;hpb=909a6a1eb92ceacb983bcff088fb512352929c46;p=vpp.git diff --git a/test/sanity_run_vpp.py b/test/sanity_run_vpp.py index 156608c104a..d1c29877b9b 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): - """ Dummy test case used to check if VPP is able to start """ + """ Sanity test case - verify whether 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)