Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Unity
提交
daad2bc8
T
Third Party Unity
项目概览
OpenHarmony
/
Third Party Unity
1 年多 前同步成功
通知
36
Star
144
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Unity
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
daad2bc8
编写于
8月 23, 2016
作者:
M
Mark VanderVoord
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
removed some newer style comments that crept into the codebase.
上级
75ad84c9
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
6 addition
and
9 deletion
+6
-9
src/unity.c
src/unity.c
+6
-9
未找到文件。
src/unity.c
浏览文件 @
daad2bc8
...
...
@@ -1142,7 +1142,6 @@ void UnityAssertEqualMemory( UNITY_INTERNAL_PTR expected,
while
(
elements
--
)
{
/* /////////////////////////////////// */
bytes
=
length
;
while
(
bytes
--
)
{
...
...
@@ -1167,8 +1166,6 @@ void UnityAssertEqualMemory( UNITY_INTERNAL_PTR expected,
ptr_exp
=
(
UNITY_INTERNAL_PTR
)((
_UP
)
ptr_exp
+
1
);
ptr_act
=
(
UNITY_INTERNAL_PTR
)((
_UP
)
ptr_act
+
1
);
}
/* /////////////////////////////////// */
}
}
...
...
@@ -1413,14 +1410,14 @@ int UnityStringArgumentMatches(const char* str)
const
char
*
ptr2
;
const
char
*
ptrf
;
/
/Go through the options and get the substrings for matching one at a time
/
* Go through the options and get the substrings for matching one at a time */
ptr1
=
str
;
while
(
ptr1
[
0
]
!=
0
)
{
if
((
ptr1
[
0
]
==
'"'
)
||
(
ptr1
[
0
]
==
'\''
))
ptr1
++
;
/
/look for the start of the next partial
/
* look for the start of the next partial */
ptr2
=
ptr1
;
ptrf
=
0
;
do
{
...
...
@@ -1431,26 +1428,26 @@ int UnityStringArgumentMatches(const char* str)
while
((
ptr2
[
0
]
!=
0
)
&&
((
ptr2
[
0
]
==
':'
)
||
(
ptr2
[
0
]
==
'\''
)
||
(
ptr2
[
0
]
==
'"'
)
||
(
ptr2
[
0
]
==
','
)))
ptr2
++
;
/
/done if complete filename match
/
* done if complete filename match */
retval
=
IsStringInBiggerString
(
Unity
.
TestFile
,
ptr1
);
if
(
retval
==
1
)
return
retval
;
/
/done if testname match after filename partial match
/
* done if testname match after filename partial match */
if
((
retval
==
2
)
&&
(
ptrf
!=
0
))
{
if
(
IsStringInBiggerString
(
Unity
.
CurrentTestName
,
ptrf
))
return
1
;
}
/
/done if complete testname match
/
* done if complete testname match */
if
(
IsStringInBiggerString
(
Unity
.
CurrentTestName
,
ptr1
)
==
1
)
return
1
;
ptr1
=
ptr2
;
}
/
/we couldn't find a match for any substrings
/
* we couldn't find a match for any substrings */
return
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录