Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
42f58ff6
L
libvirt
项目概览
openeuler
/
libvirt
通知
3
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
L
libvirt
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
42f58ff6
编写于
6月 30, 2016
作者:
F
Fabian Freyer
提交者:
Roman Bogorodskiy
3月 11, 2017
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
bhyve: test cases for UEFI bhyvexml2argvtest
Signed-off-by:
N
Roman Bogorodskiy
<
bogorodskiy@gmail.com
>
上级
d3b9a611
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
46 addition
and
3 deletion
+46
-3
tests/bhyvexml2argvdata/bhyvexml2argv-uefi.args
tests/bhyvexml2argvdata/bhyvexml2argv-uefi.args
+11
-0
tests/bhyvexml2argvdata/bhyvexml2argv-uefi.ldargs
tests/bhyvexml2argvdata/bhyvexml2argv-uefi.ldargs
+1
-0
tests/bhyvexml2argvdata/bhyvexml2argv-uefi.xml
tests/bhyvexml2argvdata/bhyvexml2argv-uefi.xml
+23
-0
tests/bhyvexml2argvtest.c
tests/bhyvexml2argvtest.c
+11
-3
未找到文件。
tests/bhyvexml2argvdata/bhyvexml2argv-uefi.args
0 → 100644
浏览文件 @
42f58ff6
/usr/sbin/bhyve \
-c 1 \
-m 214 \
-u \
-H \
-P \
-s 0:0,hostbridge \
-l bootrom,/path/to/test.fd \
-s 2:0,ahci,hd:/tmp/freebsd.img \
-s 3:0,virtio-net,faketapdev,mac=52:54:00:00:00:00 \
-s 1,lpc bhyve
tests/bhyvexml2argvdata/bhyvexml2argv-uefi.ldargs
0 → 100644
浏览文件 @
42f58ff6
dummy
tests/bhyvexml2argvdata/bhyvexml2argv-uefi.xml
0 → 100644
浏览文件 @
42f58ff6
<domain
type=
'bhyve'
>
<name>
bhyve
</name>
<uuid>
df3be7e7-a104-11e3-aeb0-50e5492bd3dc
</uuid>
<memory>
219136
</memory>
<vcpu>
1
</vcpu>
<os>
<type>
hvm
</type>
<loader
readonly=
"yes"
type=
"pflash"
>
/path/to/test.fd
</loader>
</os>
<devices>
<disk
type=
'file'
>
<driver
name=
'file'
type=
'raw'
/>
<source
file=
'/tmp/freebsd.img'
/>
<target
dev=
'hda'
bus=
'sata'
/>
<address
type=
'drive'
controller=
'0'
bus=
'0'
target=
'2'
unit=
'0'
/>
</disk>
<interface
type=
'bridge'
>
<model
type=
'virtio'
/>
<source
bridge=
"virbr0"
/>
<address
type=
'pci'
domain=
'0x0000'
bus=
'0x00'
slot=
'0x03'
function=
'0x0'
/>
</interface>
</devices>
</domain>
tests/bhyvexml2argvtest.c
浏览文件 @
42f58ff6
...
...
@@ -52,8 +52,11 @@ static int testCompareXMLToArgvFiles(const char *xml,
conn
->
privateData
=
&
driver
;
cmd
=
virBhyveProcessBuildBhyveCmd
(
conn
,
vmdef
,
false
);
ldcmd
=
virBhyveProcessBuildLoadCmd
(
conn
,
vmdef
,
"<device.map>"
,
&
actualdm
);
if
(
vmdef
->
os
.
loader
)
ldcmd
=
virCommandNew
(
"dummy"
);
else
ldcmd
=
virBhyveProcessBuildLoadCmd
(
conn
,
vmdef
,
"<device.map>"
,
&
actualdm
);
if
((
cmd
==
NULL
)
||
(
ldcmd
==
NULL
))
{
if
(
flags
&
FLAG_EXPECT_FAILURE
)
{
...
...
@@ -162,7 +165,8 @@ mymain(void)
DO_TEST_FULL(name, FLAG_EXPECT_PARSE_ERROR)
driver
.
grubcaps
=
BHYVE_GRUB_CAP_CONSDEV
;
driver
.
bhyvecaps
=
BHYVE_CAP_RTC_UTC
|
BHYVE_CAP_AHCI32SLOT
|
BHYVE_CAP_NET_E1000
;
driver
.
bhyvecaps
=
BHYVE_CAP_RTC_UTC
|
BHYVE_CAP_AHCI32SLOT
|
\
BHYVE_CAP_NET_E1000
|
BHYVE_CAP_LPC_BOOTROM
;
DO_TEST
(
"base"
);
DO_TEST
(
"acpiapic"
);
...
...
@@ -186,6 +190,7 @@ mymain(void)
DO_TEST
(
"serial-grub"
);
DO_TEST
(
"localtime"
);
DO_TEST
(
"net-e1000"
);
DO_TEST
(
"uefi"
);
/* Address allocation tests */
DO_TEST
(
"addr-single-sata-disk"
);
...
...
@@ -208,6 +213,9 @@ mymain(void)
DO_TEST_FAILURE
(
"net-e1000"
);
driver
.
bhyvecaps
&=
~
BHYVE_CAP_LPC_BOOTROM
;
DO_TEST_FAILURE
(
"uefi"
);
virObjectUnref
(
driver
.
caps
);
virObjectUnref
(
driver
.
xmlopt
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录