3 from __future__ import print_function
4 from multiprocessing import Pipe
6 from framework import VppDiedError, VppTestCase, KeepAliveReporter
9 class SanityTestCase(VppTestCase):
10 """ Sanity test case - verify whether VPP is able to start """
13 if __name__ == '__main__':
17 reporter = KeepAliveReporter()
32 print('Sanity test case passed\n')
34 print('Sanity test case failed\n')