Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
08529e1e
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看板
提交
08529e1e
编写于
6月 07, 2016
作者:
J
Jiri Denemark
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tests: Fix "Reponse" typo
Signed-off-by:
N
Jiri Denemark
<
jdenemar@redhat.com
>
上级
2dcacc0e
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
14 addition
and
14 deletion
+14
-14
tests/qemumonitortestutils.c
tests/qemumonitortestutils.c
+12
-12
tests/qemumonitortestutils.h
tests/qemumonitortestutils.h
+2
-2
未找到文件。
tests/qemumonitortestutils.c
浏览文件 @
08529e1e
...
...
@@ -96,8 +96,8 @@ qemuMonitorTestItemFree(qemuMonitorTestItemPtr item)
* Appends data for a reply to the outgoing buffer
*/
int
qemuMonitorTestAddReponse
(
qemuMonitorTestPtr
test
,
const
char
*
response
)
qemuMonitorTestAddRe
s
ponse
(
qemuMonitorTestPtr
test
,
const
char
*
response
)
{
size_t
want
=
strlen
(
response
)
+
2
;
size_t
have
=
test
->
outgoingCapacity
-
test
->
outgoingLength
;
...
...
@@ -122,12 +122,12 @@ int
qemuMonitorTestAddUnexpectedErrorResponse
(
qemuMonitorTestPtr
test
)
{
if
(
test
->
agent
||
test
->
json
)
{
return
qemuMonitorTestAddReponse
(
test
,
"{
\"
error
\"
: "
" {
\"
desc
\"
:
\"
Unexpected command
\"
, "
"
\"
class
\"
:
\"
UnexpectedCommand
\"
} }"
);
return
qemuMonitorTestAddRe
s
ponse
(
test
,
"{
\"
error
\"
: "
" {
\"
desc
\"
:
\"
Unexpected command
\"
, "
"
\"
class
\"
:
\"
UnexpectedCommand
\"
} }"
);
}
else
{
return
qemuMonitorTestAddReponse
(
test
,
"unexpected command"
);
return
qemuMonitorTestAddRe
s
ponse
(
test
,
"unexpected command"
);
}
}
...
...
@@ -162,7 +162,7 @@ qemuMonitorReportError(qemuMonitorTestPtr test, const char *errmsg, ...)
goto
cleanup
;
}
ret
=
qemuMonitorTestAddReponse
(
test
,
jsonmsg
);
ret
=
qemuMonitorTestAddRe
s
ponse
(
test
,
jsonmsg
);
cleanup:
va_end
(
msgargs
);
...
...
@@ -499,7 +499,7 @@ qemuMonitorTestProcessCommandDefault(qemuMonitorTestPtr test,
if
(
data
->
command_name
&&
STRNEQ
(
data
->
command_name
,
cmdname
))
ret
=
qemuMonitorTestAddUnexpectedErrorResponse
(
test
);
else
ret
=
qemuMonitorTestAddReponse
(
test
,
data
->
response
);
ret
=
qemuMonitorTestAddRe
s
ponse
(
test
,
data
->
response
);
cleanup:
VIR_FREE
(
cmdcopy
);
...
...
@@ -569,7 +569,7 @@ qemuMonitorTestProcessGuestAgentSync(qemuMonitorTestPtr test,
goto
cleanup
;
ret
=
qemuMonitorTestAddReponse
(
test
,
retmsg
);
ret
=
qemuMonitorTestAddRe
s
ponse
(
test
,
retmsg
);
cleanup:
virJSONValueFree
(
val
);
...
...
@@ -659,7 +659,7 @@ qemuMonitorTestProcessCommandWithArgs(qemuMonitorTestPtr test,
}
/* arguments checked out, return the response */
ret
=
qemuMonitorTestAddReponse
(
test
,
data
->
response
);
ret
=
qemuMonitorTestAddRe
s
ponse
(
test
,
data
->
response
);
cleanup:
VIR_FREE
(
argstr
);
...
...
@@ -911,7 +911,7 @@ qemuMonitorTestNew(bool json,
if
(
!
greeting
)
greeting
=
json
?
QEMU_JSON_GREETING
:
QEMU_TEXT_GREETING
;
if
(
qemuMonitorTestAddReponse
(
test
,
greeting
)
<
0
)
if
(
qemuMonitorTestAddRe
s
ponse
(
test
,
greeting
)
<
0
)
goto
error
;
if
(
qemuMonitorCommonTestInit
(
test
)
<
0
)
...
...
tests/qemumonitortestutils.h
浏览文件 @
08529e1e
...
...
@@ -39,8 +39,8 @@ int qemuMonitorTestAddHandler(qemuMonitorTestPtr test,
void
*
opaque
,
virFreeCallback
freecb
);
int
qemuMonitorTestAddReponse
(
qemuMonitorTestPtr
test
,
const
char
*
response
);
int
qemuMonitorTestAddRe
s
ponse
(
qemuMonitorTestPtr
test
,
const
char
*
response
);
int
qemuMonitorTestAddUnexpectedErrorResponse
(
qemuMonitorTestPtr
test
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录