diff options
author | Varma, Vikas (vv8305) <vv8305@us.att.com> | 2018-08-21 20:23:50 -0400 |
---|---|---|
committer | Varma, Vikas (vv8305) <vv8305@att.com> | 2018-08-21 20:34:00 -0400 |
commit | 902698ef5f07d9cbb2c46b3fb28c4d50da39edda (patch) | |
tree | 4bc854aadeb253d43d0d925cb22b454912533527 /test/functest/scripts | |
parent | 591f278130ac54d136fad0c0256d2f50bdfb5f47 (diff) |
Increase sleep time for has simulator
The functional tests are failing, because the simulators are not up and running when the test cases are running.
Change-Id: I2a487cc05ae8e1b366640afbdcb40bce8fa5d89a
Issue-ID: OPTFRA-321
Signed-off-by: Varma, Vikas (vv8305) <vv8305@att.com>
Diffstat (limited to 'test/functest/scripts')
-rwxr-xr-x | test/functest/scripts/start-simulators.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functest/scripts/start-simulators.sh b/test/functest/scripts/start-simulators.sh index 11767e0..75209f6 100755 --- a/test/functest/scripts/start-simulators.sh +++ b/test/functest/scripts/start-simulators.sh @@ -42,7 +42,7 @@ SIMULATORS_DIR=$FUNC_TEST_DIR/simulators XPID=$(ps -x | grep "python oof_dependencies_simulators.py" | grep -v grep | awk '{print $1}') if [ -z "$XPID" ]; then python oof_dependencies_simulators.py > simulator-logs 2>&1 & - sleep 5 + sleep 20 fi ) |