Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
241ac071
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
241ac071
编写于
7月 16, 2014
作者:
M
Martin Kletzander
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tests: support dynamic prefixes in commandtest
Signed-off-by:
N
Martin Kletzander
<
mkletzan@redhat.com
>
上级
1734f9e6
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
30 addition
and
19 deletion
+30
-19
tests/commandtest.c
tests/commandtest.c
+30
-19
未找到文件。
tests/commandtest.c
浏览文件 @
241ac071
...
...
@@ -62,7 +62,8 @@ main(void)
#else
static
int
checkoutput
(
const
char
*
testname
)
static
int
checkoutput
(
const
char
*
testname
,
char
*
prefix
)
{
int
ret
=
-
1
;
char
*
expectname
=
NULL
;
...
...
@@ -86,6 +87,16 @@ static int checkoutput(const char *testname)
goto
cleanup
;
}
if
(
prefix
)
{
char
*
tmp
=
NULL
;
if
(
virAsprintf
(
&
tmp
,
"%s%s"
,
prefix
,
expectlog
)
<
0
)
goto
cleanup
;
VIR_FREE
(
expectlog
);
expectlog
=
tmp
;
}
if
(
STRNEQ
(
expectlog
,
actuallog
))
{
virtTestDifference
(
stderr
,
expectlog
,
actuallog
);
goto
cleanup
;
...
...
@@ -173,7 +184,7 @@ static int test2(const void *unused ATTRIBUTE_UNUSED)
return
-
1
;
}
if
((
ret
=
checkoutput
(
"test2"
))
!=
0
)
{
if
((
ret
=
checkoutput
(
"test2"
,
NULL
))
!=
0
)
{
virCommandFree
(
cmd
);
return
ret
;
}
...
...
@@ -187,7 +198,7 @@ static int test2(const void *unused ATTRIBUTE_UNUSED)
virCommandFree
(
cmd
);
return
checkoutput
(
"test2"
);
return
checkoutput
(
"test2"
,
NULL
);
}
/*
...
...
@@ -219,7 +230,7 @@ static int test3(const void *unused ATTRIBUTE_UNUSED)
goto
cleanup
;
}
ret
=
checkoutput
(
"test3"
);
ret
=
checkoutput
(
"test3"
,
NULL
);
cleanup:
virCommandFree
(
cmd
);
...
...
@@ -261,7 +272,7 @@ static int test4(const void *unused ATTRIBUTE_UNUSED)
while
(
kill
(
pid
,
0
)
!=
-
1
)
usleep
(
100
*
1000
);
ret
=
checkoutput
(
"test4"
);
ret
=
checkoutput
(
"test4"
,
NULL
);
cleanup:
virCommandFree
(
cmd
);
...
...
@@ -291,7 +302,7 @@ static int test5(const void *unused ATTRIBUTE_UNUSED)
virCommandFree
(
cmd
);
return
checkoutput
(
"test5"
);
return
checkoutput
(
"test5"
,
NULL
);
}
...
...
@@ -315,7 +326,7 @@ static int test6(const void *unused ATTRIBUTE_UNUSED)
virCommandFree
(
cmd
);
return
checkoutput
(
"test6"
);
return
checkoutput
(
"test6"
,
NULL
);
}
...
...
@@ -340,7 +351,7 @@ static int test7(const void *unused ATTRIBUTE_UNUSED)
virCommandFree
(
cmd
);
return
checkoutput
(
"test7"
);
return
checkoutput
(
"test7"
,
NULL
);
}
/*
...
...
@@ -365,7 +376,7 @@ static int test8(const void *unused ATTRIBUTE_UNUSED)
virCommandFree
(
cmd
);
return
checkoutput
(
"test8"
);
return
checkoutput
(
"test8"
,
NULL
);
}
...
...
@@ -403,7 +414,7 @@ static int test9(const void *unused ATTRIBUTE_UNUSED)
virCommandFree
(
cmd
);
return
checkoutput
(
"test9"
);
return
checkoutput
(
"test9"
,
NULL
);
}
...
...
@@ -429,7 +440,7 @@ static int test10(const void *unused ATTRIBUTE_UNUSED)
virCommandFree
(
cmd
);
return
checkoutput
(
"test10"
);
return
checkoutput
(
"test10"
,
NULL
);
}
/*
...
...
@@ -453,7 +464,7 @@ static int test11(const void *unused ATTRIBUTE_UNUSED)
virCommandFree
(
cmd
);
return
checkoutput
(
"test11"
);
return
checkoutput
(
"test11"
,
NULL
);
}
/*
...
...
@@ -475,7 +486,7 @@ static int test12(const void *unused ATTRIBUTE_UNUSED)
virCommandFree
(
cmd
);
return
checkoutput
(
"test12"
);
return
checkoutput
(
"test12"
,
NULL
);
}
/*
...
...
@@ -510,7 +521,7 @@ static int test13(const void *unused ATTRIBUTE_UNUSED)
goto
cleanup
;
}
ret
=
checkoutput
(
"test13"
);
ret
=
checkoutput
(
"test13"
,
NULL
);
cleanup:
virCommandFree
(
cmd
);
...
...
@@ -582,7 +593,7 @@ static int test14(const void *unused ATTRIBUTE_UNUSED)
goto
cleanup
;
}
ret
=
checkoutput
(
"test14"
);
ret
=
checkoutput
(
"test14"
,
NULL
);
cleanup:
virCommandFree
(
cmd
);
...
...
@@ -613,7 +624,7 @@ static int test15(const void *unused ATTRIBUTE_UNUSED)
goto
cleanup
;
}
ret
=
checkoutput
(
"test15"
);
ret
=
checkoutput
(
"test15"
,
NULL
);
cleanup:
VIR_FREE
(
cwd
);
...
...
@@ -659,7 +670,7 @@ static int test16(const void *unused ATTRIBUTE_UNUSED)
goto
cleanup
;
}
ret
=
checkoutput
(
"test16"
);
ret
=
checkoutput
(
"test16"
,
NULL
);
cleanup:
virCommandFree
(
cmd
);
...
...
@@ -841,7 +852,7 @@ static int test20(const void *unused ATTRIBUTE_UNUSED)
goto
cleanup
;
}
ret
=
checkoutput
(
"test20"
);
ret
=
checkoutput
(
"test20"
,
NULL
);
cleanup:
virCommandFree
(
cmd
);
VIR_FREE
(
buf
);
...
...
@@ -900,7 +911,7 @@ static int test21(const void *unused ATTRIBUTE_UNUSED)
goto
cleanup
;
}
ret
=
checkoutput
(
"test21"
);
ret
=
checkoutput
(
"test21"
,
NULL
);
cleanup:
VIR_FREE
(
outbuf
);
VIR_FREE
(
errbuf
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录