aboutsummaryrefslogtreecommitdiffstats
path: root/test/sanity_run_vpp.py
diff options
context:
space:
mode:
authorjuraj.linkes <juraj.linkes@pantheon.tech>2018-11-16 17:28:56 +0100
committerDamjan Marion <dmarion@me.com>2018-11-26 19:54:25 +0000
commitabec0129b17797170d59521e0ad8b5f6d5853643 (patch)
treee3f3d18d768b759f2c0a91743ca2ec6aa8babcc6 /test/sanity_run_vpp.py
parent2152e1cf8b3420d94ba31fe25853977ad945f35a (diff)
Split non-parallel testsuite
Split one big suite into smaller suites when not running tests in parallel. This results in all tests being executed in one iteration. Change-Id: I0d3d357a95d9cc596b606d5911a5819e8ffdeee5 Signed-off-by: juraj.linkes <juraj.linkes@pantheon.tech>
Diffstat (limited to 'test/sanity_run_vpp.py')
-rw-r--r--test/sanity_run_vpp.py7
1 files changed, 6 insertions, 1 deletions
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)