b23ffd7ef2
Implement command line argument parsing instead of passing arguments via environment variables. Add script for running tests without having to invoke make. Deprecate running tests via make. Type: improvement Change-Id: I2e3054a61a2ae25d460e9be00be7d7705fbf943e Signed-off-by: Klement Sekera <ksekera@cisco.com> Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
54 lines
1.0 KiB
Python
54 lines
1.0 KiB
Python
#!/usr/bin/env python3
|
|
|
|
from __future__ import print_function
|
|
from multiprocessing import Pipe
|
|
import sys
|
|
import os
|
|
from framework import VppDiedError, VppTestCase, KeepAliveReporter
|
|
|
|
|
|
class SanityTestCase(VppTestCase):
|
|
""" Sanity test case - verify whether VPP is able to start """
|
|
cpus = [0]
|
|
|
|
# don't ask to debug SanityTestCase
|
|
@classmethod
|
|
def wait_for_enter(cls, pid=0):
|
|
pass
|
|
|
|
@classmethod
|
|
def _debug_quit(cls):
|
|
try:
|
|
cls.vpp.poll()
|
|
except AttributeError:
|
|
pass
|
|
|
|
|
|
def main():
|
|
rc = 0
|
|
tc = SanityTestCase
|
|
x, y = Pipe()
|
|
reporter = KeepAliveReporter()
|
|
reporter.pipe = y
|
|
try:
|
|
tc.setUpClass()
|
|
except VppDiedError:
|
|
rc = -1
|
|
else:
|
|
try:
|
|
tc.tearDownClass()
|
|
except Exception:
|
|
rc = -1
|
|
x.close()
|
|
y.close()
|
|
|
|
if rc == 0:
|
|
print('Sanity test case passed.')
|
|
else:
|
|
print('Sanity test case failed.')
|
|
return rc
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main())
|