
Type: fix Since CentOS 8, RPM build script doesn't accept '#!/usr/bin/env python' as a valid shebang line. It requires scripts to explicitly chose between python2 or python3. Change all to use python3 as suggested by Paul Vinciguerra. Depends-On: https://gerrit.fd.io/r/23170 Signed-off-by: Renato Botelho do Couto <renato@netgate.com> Change-Id: Ie72af9f60fd0609e07f05b70f8d96e738b2754d1
40 lines
794 B
Python
40 lines
794 B
Python
#!/usr/bin/env python3
|
|
|
|
from __future__ import print_function
|
|
from multiprocessing import Pipe
|
|
from sys import exit
|
|
import os
|
|
from framework import VppDiedError, VppTestCase, KeepAliveReporter
|
|
|
|
|
|
class SanityTestCase(VppTestCase):
|
|
""" Sanity test case - verify whether VPP is able to start """
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
os.environ["RND_SEED"] = "1"
|
|
rc = 0
|
|
tc = SanityTestCase
|
|
x, y = Pipe()
|
|
reporter = KeepAliveReporter()
|
|
reporter.pipe = y
|
|
try:
|
|
tc.setUpClass()
|
|
except VppDiedError:
|
|
rc = -1
|
|
else:
|
|
try:
|
|
tc.tearDownClass()
|
|
except:
|
|
pass
|
|
x.close()
|
|
y.close()
|
|
|
|
if rc == 0:
|
|
print('Sanity test case passed\n')
|
|
else:
|
|
print('Sanity test case failed\n')
|
|
|
|
exit(rc)
|