diff options
author | Varma, Vikas (vv8305) <vv8305@att.com> | 2018-08-27 15:58:57 -0400 |
---|---|---|
committer | Vikas Varma <vv8305@att.com> | 2018-08-27 20:19:57 +0000 |
commit | 032826f947147dc9d0c5a763bcea173e995acdfb (patch) | |
tree | e2cc362405f75c45e3c5858860de0565bf52da27 /test/functest/scripts/start-simulators.sh | |
parent | 44795f01bc3c53875a759dd6043d25b237362fad (diff) |
Fixing functional test cases
Change-Id: I752e465f8f8a83cf5e18d300ff7aeb2e1b8de3c5
Signed-off-by: Varma, Vikas (vv8305) <vv8305@att.com>
Issue-ID: OPTFRA-321
Signed-off-by: Varma, Vikas (vv8305) <vv8305@att.com>
Diffstat (limited to 'test/functest/scripts/start-simulators.sh')
-rwxr-xr-x | test/functest/scripts/start-simulators.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functest/scripts/start-simulators.sh b/test/functest/scripts/start-simulators.sh index b8b5719..a3f3db1 100755 --- a/test/functest/scripts/start-simulators.sh +++ b/test/functest/scripts/start-simulators.sh @@ -42,8 +42,8 @@ SIMULATORS_DIR=$FUNC_TEST_DIR/simulators XPID=$(ps -x | grep "python oof_dependencies_simulators.py" | grep -v grep | awk '{print $1}') echo "simulator pid " $XPID if [ -z "$XPID" ]; then - python oof_dependencies_simulators.py & # > simulator-logs 2>&1 & - sleep 20 + python oof_dependencies_simulators.py > simulator-logs 2>&1 & + sleep 10 fi ) |