diff options
author | Daniel Rose <dr695h@att.com> | 2019-09-12 21:55:14 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-09-12 21:55:14 +0000 |
commit | 3cb0864c7b6aff78919b869523c2c13acb6cd43a (patch) | |
tree | eec9f15fcfd90d20bb7fd9fde0b14c058c3d471d /scripts | |
parent | c15fc8648e6284f5d060ed24c9d58035b3f4f4d7 (diff) | |
parent | 63651543d023ca7ba594f30c9b8aa7161f731dd2 (diff) |
Merge "Remove noop code"
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/sdc/setup_sdc_for_sanity.sh | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/scripts/sdc/setup_sdc_for_sanity.sh b/scripts/sdc/setup_sdc_for_sanity.sh index fc9f31b4..562c26d1 100644 --- a/scripts/sdc/setup_sdc_for_sanity.sh +++ b/scripts/sdc/setup_sdc_for_sanity.sh @@ -94,45 +94,7 @@ else -p 10001 -${TEST_SUITE} fi -sleep 120 - # This file is sourced in another script which is out of our control... set +e set +o pipefail -# The code below for example does nothing and breaks immediately (running locally at least) -# Also it is very fragile: empty CID variable and broken docker command... - -#monitor test processes - - -TIME_OUT=1200 -INTERVAL=20 -TIME=0 -CID=`docker ps | grep tests | awk '{print $1}'` - -while [ "$TIME" -lt "$TIME_OUT" ]; do - -PID=`docker exec -i $CID ps -ef | grep java | awk '{print $1}'` - -echo sanity PID is -- $PID - -if [ -z "$PID" ] - then - echo SDC sanity finished in $TIME seconds - break - fi - - echo Sleep: $INTERVAL seconds before testing if SDC sanity completed. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds - sleep $INTERVAL - TIME=$(($TIME+$INTERVAL)) -done - -if [ "$TIME" -ge "$TIME_OUT" ] - then - echo TIME OUT: SDC sanity was NOT completed in $TIME_OUT seconds... Could cause problems for tests... -fi - - - - |