Fatih Degirmenci | d48647d | 2019-04-10 09:36:03 +0200 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | |
| 4 | # vim: set ts=2 sw=2 expandtab: |
| 5 | #!/bin/bash |
| 6 | |
| 7 | # ============LICENSE_START======================================================= |
| 8 | # Copyright (C) 2019 The Nordix Foundation. All rights reserved. |
| 9 | # ================================================================================ |
| 10 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 11 | # you may not use this file except in compliance with the License. |
| 12 | # You may obtain a copy of the License at |
| 13 | # |
| 14 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | # |
| 16 | # Unless required by applicable law or agreed to in writing, software |
| 17 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 18 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 | # See the License for the specific language governing permissions and |
| 20 | # limitations under the License. |
| 21 | # |
| 22 | # SPDX-License-Identifier: Apache-2.0 |
| 23 | # ============LICENSE_END========================================================= |
| 24 | |
| 25 | set -o errexit |
| 26 | set -o nounset |
| 27 | set -o pipefail |
| 28 | |
Fatih Degirmenci | d48647d | 2019-04-10 09:36:03 +0200 | [diff] [blame] | 29 | # execute cloud engine test.sh script with arguments |
Fatih Degirmenci | 569dfca | 2019-05-07 11:20:53 +0200 | [diff] [blame] | 30 | echo "Info: Testing scenario $DEPLOY_SCENARIO deployed using $INSTALLER_TYPE" |
Fatih Degirmenci | 7a43976 | 2019-05-07 10:39:31 +0200 | [diff] [blame] | 31 | cd $WORKSPACE |
Fatih Degirmenci | d48647d | 2019-04-10 09:36:03 +0200 | [diff] [blame] | 32 | ./test/test.sh -c -f $TEST_FW -t $TEST_SUITE -s $DEPLOY_SCENARIO |
| 33 | |
| 34 | # vim: set ts=2 sw=2 expandtab: |