Use uri for sdf and stop setting DEPLOY_SCENARIO parameter
[infra/cicd.git] / jjb / cloud-infra / cloud-infra-scenario-test.sh
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
29 # execute cloud engine test.sh script with arguments
30 echo "Info: Testing scenario $DEPLOY_SCENARIO deployed using $INSTALLER_TYPE"
31 cd $WORKSPACE
32 ./test/test.sh -c -f $TEST_FW -t $TEST_SUITE -s $DEPLOY_SCENARIO
33
34 # vim: set ts=2 sw=2 expandtab: