diff options
author | Daniel Rose <dr695h@att.com> | 2019-08-12 14:14:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-08-12 14:14:55 +0000 |
commit | 022419083f175e50112e60effc8e490f02cfd57d (patch) | |
tree | 9b6aa3efa0c52f0acb5814fde4fba1a6efd6750a | |
parent | 5fe4afa4fbe1ec97535f6b40271445a43252c914 (diff) | |
parent | 4a7516ba670c145b52cd0b2f3294aaf48473874d (diff) |
Merge "Remove redundant robot variable"
-rw-r--r-- | plans/sdc/sanity/setup.sh | 23 | ||||
-rw-r--r-- | plans/sdc/uiSanity/setup.sh | 21 |
2 files changed, 29 insertions, 15 deletions
diff --git a/plans/sdc/sanity/setup.sh b/plans/sdc/sanity/setup.sh index 7587d096..0e652f86 100644 --- a/plans/sdc/sanity/setup.sh +++ b/plans/sdc/sanity/setup.sh @@ -1,11 +1,18 @@ #!/bin/bash +# +# Copyright 2019 © Samsung Electronics Co., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# source ${WORKSPACE}/scripts/sdc/setup_sdc_for_sanity.sh tad - -BE_IP=`get-instance-ip.sh sdc-BE` -echo BE_IP=${BE_IP} - - -# Pass any variables required by Robot test suites in ROBOT_VARIABLES -ROBOT_VARIABLES="-v BE_IP:${BE_IP}" - diff --git a/plans/sdc/uiSanity/setup.sh b/plans/sdc/uiSanity/setup.sh index 863f8d4d..3d315098 100644 --- a/plans/sdc/uiSanity/setup.sh +++ b/plans/sdc/uiSanity/setup.sh @@ -1,10 +1,17 @@ #!/bin/bash +# +# Copyright 2019 © Samsung Electronics Co., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. source ${WORKSPACE}/scripts/sdc/setup_sdc_for_sanity.sh tud - -BE_IP=`get-instance-ip.sh sdc-BE` -echo BE_IP=${BE_IP} - -# Pass any variables required by Robot test suites in ROBOT_VARIABLES -ROBOT_VARIABLES="-v BE_IP:${BE_IP}" - |