Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
026f3732
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
026f3732
编写于
4月 26, 2021
作者:
C
chuaizhzh
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix failed testcase
Change-Id: I3fc5207a8a33ed55aa87dbeed4f3cab980d825ce
上级
c1a64e5b
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
10 addition
and
5 deletion
+10
-5
kernel_lite/fs_posix/src/FileSystemTest.cpp
kernel_lite/fs_posix/src/FileSystemTest.cpp
+3
-0
kernel_lite/fs_posix/src/FsFcntlTest.cpp
kernel_lite/fs_posix/src/FsFcntlTest.cpp
+1
-0
kernel_lite/process_posix/src/ProcessTest.cpp
kernel_lite/process_posix/src/ProcessTest.cpp
+6
-5
未找到文件。
kernel_lite/fs_posix/src/FileSystemTest.cpp
浏览文件 @
026f3732
...
...
@@ -22,6 +22,9 @@ using namespace testing::ext;
// delete test file and dir
void
DeleteTestFiles
()
{
if
(
access
(
TOP_DIR
"/DIR_NEW"
,
F_OK
)
==
0
)
{
RemoveDir
(
TOP_DIR
"/DIR_NEW"
);
}
if
(
access
(
TOP_DIR
"/"
DIR0
,
F_OK
)
==
0
)
{
RemoveDir
(
TOP_DIR
"/"
DIR0
);
}
...
...
kernel_lite/fs_posix/src/FsFcntlTest.cpp
浏览文件 @
026f3732
...
...
@@ -324,6 +324,7 @@ HWTEST_F(FileSystemTest, testOpenEisdir, Function | MediumTest | Level2)
fd
=
open
(
DIR0
,
O_RDWR
,
0777
);
EXPECT_EQ
(
fd
,
-
1
)
<<
"> Should open failed"
;
EXPECT_EQ
(
errno
,
EISDIR
);
close
(
fd
);
}
/**
...
...
kernel_lite/process_posix/src/ProcessTest.cpp
浏览文件 @
026f3732
...
...
@@ -50,7 +50,7 @@ HWTEST_F(ProcessTest, testLineBigExit, Function | MediumTest | Level2)
}
Msleep
(
50
);
exitCode
=
0
;
ASSERT_EQ
(
CheckProcStatus
(
pid
,
&
exitCode
),
1
);
ASSERT_EQ
(
CheckProcStatus
(
pid
,
&
exitCode
,
0
),
1
);
ASSERT_EQ
(
exitCode
,
reInt
[
i
]);
}
}
...
...
@@ -160,7 +160,7 @@ HWTEST_F(ProcessTest, testLineExit, Function | MediumTest | Level2)
}
Msleep
(
50
);
exitCode
=
0
;
ASSERT_EQ
(
CheckProcStatus
(
pid
,
&
exitCode
),
1
);
ASSERT_EQ
(
CheckProcStatus
(
pid
,
&
exitCode
,
0
),
1
);
ASSERT_EQ
(
exitCode
,
reInt
[
i
]);
}
}
...
...
@@ -270,7 +270,7 @@ HWTEST_F(ProcessTest, testExit, Function | MediumTest | Level2)
}
Msleep
(
50
);
exitCode
=
0
;
ASSERT_EQ
(
CheckProcStatus
(
pid
,
&
exitCode
),
1
);
ASSERT_EQ
(
CheckProcStatus
(
pid
,
&
exitCode
,
0
),
1
);
ASSERT_EQ
(
exitCode
,
reInt
[
i
]);
}
}
...
...
@@ -343,7 +343,7 @@ int FunctionAssertFalse(void)
}
Msleep
(
50
);
int
exitCode
=
0
;
int
reInt
=
CheckProcStatus
(
pid
,
&
exitCode
);
int
reInt
=
CheckProcStatus
(
pid
,
&
exitCode
,
0
);
if
((
reInt
==
2
)
&&
(
exitCode
==
SIGABRT
))
{
LOG
(
"> Success"
);
return
1
;
...
...
@@ -368,7 +368,7 @@ HWTEST_F(ProcessTest, testAssertFalse, Function | MediumTest | Level3)
}
Msleep
(
50
);
int
exitCode
=
0
;
ASSERT_EQ
(
CheckProcStatus
(
pid
,
&
exitCode
),
2
);
ASSERT_EQ
(
CheckProcStatus
(
pid
,
&
exitCode
,
0
),
2
);
ASSERT_EQ
(
exitCode
,
SIGABRT
);
}
...
...
@@ -534,5 +534,6 @@ HWTEST_F(ProcessTest, testWaitPidTest, Function | MediumTest | Level3)
EXPECT_EQ
(
expectPid
,
1
);
EXPECT_EQ
(
pidChild
,
0
);
Msleep
(
50
);
WaitProcExitedOK
(
pid
);
DeleteGlobalVariable
();
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录