diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2017-07-12 14:53:01 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2017-07-12 14:53:01 -0700 |
commit | cf6028ef5147a966fc29759aa36ce199ede71fb5 (patch) | |
tree | fbdcf9d30318c981716e1e560af6c02ab4e31187 /test/csit/scripts/run-instance.sh | |
parent | 8f1a47466f25ef2b941cd73dd7cc0bbe7b1b7fc6 (diff) |
Sample CSIT test suite
Change-Id: I07f685cb13cea2996e97fab4c65441bbd39f9539
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'test/csit/scripts/run-instance.sh')
-rwxr-xr-x | test/csit/scripts/run-instance.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/csit/scripts/run-instance.sh b/test/csit/scripts/run-instance.sh new file mode 100755 index 000000000..e68ecb3e0 --- /dev/null +++ b/test/csit/scripts/run-instance.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# +# Copyright 2016-2017 Huawei Technologies 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. +# +# $1 docker image path under ${WORKSPACE}/test/csit/docker/ +# $2 nickname for the instance +# $3 docker run options, e.g. variables +echo $@ + +docker run --name $2 $3 -d $1 |