blob: e1b92d17d28af16ad038cdf6bcc420d8a8e9da99 [file] [log] [blame]
Fatih Degirmencid48647d2019-04-10 09:36:03 +02001#!/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
25set -o errexit
26set -o nounset
27set -o pipefail
28
Fatih Degirmencid48647d2019-04-10 09:36:03 +020029# execute cloud engine test.sh script with arguments
30echo "Testing scenario $DEPLOY_SCENARIO deployed using $INSTALLER_TYPE"
Fatih Degirmenci7a439762019-05-07 10:39:31 +020031cd $WORKSPACE
Fatih Degirmencid48647d2019-04-10 09:36:03 +020032./test/test.sh -c -f $TEST_FW -t $TEST_SUITE -s $DEPLOY_SCENARIO
33
34# vim: set ts=2 sw=2 expandtab: