1#!/bin/sh
2################################################################################
3#
4# Copyright (C) 2022 Huawei Device Co., Ltd.
5# SPDX-License-Identifier: GPL-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS,
9# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10# See the License for the specific language governing permissions and
11# limitations under the License.
12#
13################################################################################
14# File: init_runtest.sh
15#
16# Description: init for linuxkerneltest runtest
17#
18# Authors:     Ma Feng - mafeng.ma@huawei.com
19#
20# History:     Mar 15 2022 - init scripts
21#
22################################################################################
23
24cp -r $1/ $2
25
26cd $2
27
28tar -zcvf runtest.tar.gz runtest
29
30cd -
31