17 Star 117 Fork 261

OpenHarmony / testfwk_developer_test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ohtest 940 Bytes
一键复制 编辑 原始数据 按行查看 历史
wshikh 提交于 2022-09-13 17:59 . 修改copyright时间为2022
#!/usr/bin/python
#
# Copyright (c) 2022 Huawei Device 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.
#
import os
import sys
print(os.getcwd())
if "DEVTESTDIR" in os.environ:
homedir = os.environ["DEVTESTDIR"]
os.chdir(homedir)
print(os.getcwd())
cmd = "./start.sh"
for index in range (1, len(sys.argv)):
cmd += " " + sys.argv[index]
print(cmd)
os.system(cmd)
else:
print("no DEVTESTDIR!!")
1
https://gitee.com/openharmony/testfwk_developer_test.git
git@gitee.com:openharmony/testfwk_developer_test.git
openharmony
testfwk_developer_test
testfwk_developer_test
master

搜索帮助