Split non-parallel testsuite
[vpp.git] / test / sanity_run_vpp.py
index 012b16d..933e3a7 100644 (file)
@@ -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)