diff options
Diffstat (limited to 'test/sanity_run_vpp.py')
-rw-r--r-- | test/sanity_run_vpp.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/sanity_run_vpp.py b/test/sanity_run_vpp.py index 92f250b2a6b..2ee7d310a35 100644 --- a/test/sanity_run_vpp.py +++ b/test/sanity_run_vpp.py @@ -3,6 +3,7 @@ from __future__ import print_function from multiprocessing import Pipe from sys import exit +import os from framework import VppDiedError, VppTestCase, KeepAliveReporter @@ -10,7 +11,9 @@ 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() |