blob: 527b618fbd96f157e96fa28d09b512e83c9a70a1 [file] [log] [blame]
Klement Sekera3747c752017-04-10 06:30:17 +02001#!/usr/bin/env python
2
3from __future__ import print_function
4from framework import VppTestCase
5from hook import VppDiedError
6from sys import exit
7
8
9class SanityTestCase(VppTestCase):
10 """ Dummy test case used to check if VPP is able to start """
11 pass
12
13if __name__ == '__main__':
14 rc = 0
15 tc = SanityTestCase
16 try:
17 tc.setUpClass()
18 except VppDiedError:
19 rc = -1
20 else:
21 try:
22 tc.tearDownClass()
23 except:
24 pass
25
26 exit(rc)