Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
tp-qemu
提交
7cf589b4
T
tp-qemu
项目概览
openeuler
/
tp-qemu
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
tp-qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
7cf589b4
编写于
9月 28, 2015
作者:
L
Lucas Meneghel Rodrigues
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #465 from swapnakrishnan2k/patch-1
qemu.spice: Removing ShellCmdError
上级
cb397332
92a48339
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
9 addition
and
9 deletion
+9
-9
qemu/tests/rv_build_install.py
qemu/tests/rv_build_install.py
+9
-9
未找到文件。
qemu/tests/rv_build_install.py
浏览文件 @
7cf589b4
...
...
@@ -49,13 +49,13 @@ def install_req_pkgs(pkgsRequired, vm_root_session, params):
logging
.
info
(
"Checking to see if %s is installed"
%
pkgName
)
try
:
vm_root_session
.
cmd
(
"rpm -q %s"
%
pkgName
)
except
ShellCmdError
:
except
:
rpm
=
params
.
get
(
re
.
sub
(
"-"
,
"_"
,
pkgName
)
+
"_url"
)
logging
.
info
(
"Installing %s from %s"
%
(
pkgName
,
rpm
))
try
:
vm_root_session
.
cmd
(
"yum -y localinstall %s"
%
rpm
,
timeout
=
300
)
except
ShellCmdError
:
except
:
logging
.
info
(
"Could not install %s"
%
pkgName
)
...
...
@@ -78,7 +78,7 @@ def build_install_spiceprotocol(vm_root_session, vm_script_path, params):
"--enablerepo=
\"
epel
\"
-y install pyparsing"
output
=
vm_root_session
.
cmd
(
cmd
,
timeout
=
300
)
logging
.
info
(
output
)
except
ShellCmdError
:
except
:
logging
.
error
(
"Not able to install pyparsing!"
)
output
=
vm_root_session
.
cmd
(
"%s -p spice-protocol"
%
(
vm_script_path
))
...
...
@@ -175,7 +175,7 @@ def build_install_spicegtk(vm_root_session, vm_script_path, params):
output
=
vm_root_session
.
cmd
(
"LD_LIBRARY_PATH=/usr/local/lib"
" remote-viewer --spice-gtk-version"
)
logging
.
info
(
output
)
except
ShellCmdError
:
except
:
logging
.
error
(
output
)
if
"release 7"
in
vm_root_session
.
cmd
(
"cat /etc/redhat-release"
):
...
...
@@ -191,7 +191,7 @@ def build_install_spicegtk(vm_root_session, vm_script_path, params):
"--enablerepo=
\"
epel
\"
-y install perl-Text-CSV"
output
=
vm_root_session
.
cmd
(
cmd
,
timeout
=
300
)
logging
.
info
(
output
)
except
ShellCmdError
:
except
:
logging
.
error
(
output
)
# spice-gtk needs to built from tarball before building virt-viewer on RHEL6
...
...
@@ -218,7 +218,7 @@ def build_install_spicegtk(vm_root_session, vm_script_path, params):
output
=
vm_root_session
.
cmd
(
"LD_LIBRARY_PATH=/usr/local/lib"
" remote-viewer --spice-gtk-version"
)
logging
.
info
(
output
)
except
ShellCmdError
:
except
:
logging
.
error
(
output
)
...
...
@@ -235,7 +235,7 @@ def build_install_vdagent(vm_root_session, vm_script_path, params):
try
:
output
=
vm_root_session
.
cmd
(
"spice-vdagent -h"
)
logging
.
info
(
output
)
except
ShellCmdError
:
except
:
logging
.
error
(
output
)
pkgsRequired
=
[
"libpciaccess-devel"
]
...
...
@@ -253,14 +253,14 @@ def build_install_vdagent(vm_root_session, vm_script_path, params):
logging
.
info
(
output
)
if
re
.
search
(
"fail"
,
output
,
re
.
IGNORECASE
):
raise
error
.
TestFail
(
"spice-vd-agent was not started properly"
)
except
ShellCmdError
:
except
:
raise
error
.
TestFail
(
"spice-vd-agent was not started properly"
)
# Get version number of spice-vdagent
try
:
output
=
vm_root_session
.
cmd
(
"spice-vdagent -h"
)
logging
.
info
(
output
)
except
ShellCmdError
:
except
:
logging
.
error
(
output
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录