diff options
Diffstat (limited to 'test/sanity_run_vpp.py')
-rw-r--r-- | test/sanity_run_vpp.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/sanity_run_vpp.py b/test/sanity_run_vpp.py new file mode 100644 index 00000000000..527b618fbd9 --- /dev/null +++ b/test/sanity_run_vpp.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python + +from __future__ import print_function +from framework import VppTestCase +from hook import VppDiedError +from sys import exit + + +class SanityTestCase(VppTestCase): + """ Dummy test case used to check if VPP is able to start """ + pass + +if __name__ == '__main__': + rc = 0 + tc = SanityTestCase + try: + tc.setUpClass() + except VppDiedError: + rc = -1 + else: + try: + tc.tearDownClass() + except: + pass + + exit(rc) |