Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
6eca25ea
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
6eca25ea
编写于
11月 18, 2021
作者:
O
openharmony_ci
提交者:
Gitee
11月 18, 2021
浏览文件
操作
浏览文件
下载
差异文件
!1112 【communication_lite】延时接口函数 osDelay()修改为sleep()
Merge pull request !1112 from wkejing/master
上级
f0ccfa40
8a14b06b
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
19 addition
and
19 deletion
+19
-19
communication_lite/lwip_hal/src/lwip_func_test.c
communication_lite/lwip_hal/src/lwip_func_test.c
+16
-16
communication_lite/wifiservice_hal/src/wifiservice_func_test.c
...nication_lite/wifiservice_hal/src/wifiservice_func_test.c
+3
-3
未找到文件。
communication_lite/lwip_hal/src/lwip_func_test.c
浏览文件 @
6eca25ea
...
...
@@ -38,7 +38,7 @@
#define LWIP_TEST_FAIL (-1)
#define DEF_TASK_STACK 2000
#define DEF_TASK_PRIORITY 20
#define ONE_SECOND 1
00
#define ONE_SECOND 1
#define TIMEOUT 4
#define TEST_FD_COUNT 10
...
...
@@ -56,7 +56,7 @@ static int g_selectTimeout = 2;
static
void
WaitClient
(
void
)
{
while
(
1
)
{
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
if
(
g_clientWait
)
{
break
;
}
...
...
@@ -68,7 +68,7 @@ static void WaitClient(void)
static
void
WaitServer
(
void
)
{
while
(
1
)
{
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
if
(
g_serverWait
)
{
break
;
}
...
...
@@ -134,7 +134,7 @@ static void CommTcpClientTask(void)
char
sendMsgList
[
5
][
50
]
=
{
"Hi, I'm client,FD:[%d]"
,
"client:123456789abcdefg,FD:[%d]"
,
"client:!!@@##$$%%^^&&**(()),FD:[%d]"
,
"client:(((112233445566778899))),FD:[%d]"
,
"bye"
};
for
(
int
i
=
0
;
i
<
count
;
i
++
)
{
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
memset_s
(
dataBuf
,
sizeof
(
dataBuf
),
0
,
sizeof
(
dataBuf
));
rst
=
sprintf_s
(
dataBuf
,
sizeof
(
dataBuf
),
sendMsgList
[
i
],
clnFd
);
if
(
rst
<
0
)
{
...
...
@@ -499,7 +499,7 @@ LITE_TEST_CASE(LwipFuncTestSuite, testTcp, Function | MediumTest | Level2)
printf
(
"[testTcp]create client task fail!
\n
"
);
}
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
int
timeout
=
TIMEOUT
;
g_serverWait
=
1
;
g_clientWait
=
1
;
...
...
@@ -509,11 +509,11 @@ LITE_TEST_CASE(LwipFuncTestSuite, testTcp, Function | MediumTest | Level2)
break
;
}
timeout
--
;
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
printf
(
"[testTcp] wait[1]...
\n
"
);
}
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
timeout
=
TIMEOUT
;
g_serverWait
=
1
;
g_clientWait
=
1
;
...
...
@@ -523,11 +523,11 @@ LITE_TEST_CASE(LwipFuncTestSuite, testTcp, Function | MediumTest | Level2)
break
;
}
timeout
--
;
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
printf
(
"[testTcp] wait[2]...
\n
"
);
}
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
timeout
=
TIMEOUT
;
g_serverWait
=
1
;
g_clientWait
=
1
;
...
...
@@ -537,10 +537,10 @@ LITE_TEST_CASE(LwipFuncTestSuite, testTcp, Function | MediumTest | Level2)
break
;
}
timeout
--
;
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
printf
(
"[testTcp] wait[3]...
\n
"
);
}
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
timeout
=
TIMEOUT
;
g_serverWait
=
1
;
g_clientWait
=
1
;
...
...
@@ -550,13 +550,13 @@ LITE_TEST_CASE(LwipFuncTestSuite, testTcp, Function | MediumTest | Level2)
break
;
}
timeout
--
;
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
printf
(
"[testTcp] wait[4]...
\n
"
);
}
TEST_ASSERT_EQUAL_INT
(
1
,
g_clientResult
);
TEST_ASSERT_EQUAL_INT
(
1
,
g_serverResult
);
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
g_serverWait
=
1
;
g_clientWait
=
1
;
}
...
...
@@ -642,7 +642,7 @@ LITE_TEST_CASE(LwipFuncTestSuite, testSelectTimeout, Function | MediumTest | Lev
printf
(
"create select server task fail!
\n
"
);
}
else
{
while
(
g_selectFlag
)
{
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
printf
(
"wait select server finish...
\n
"
);
}
TEST_ASSERT_EQUAL_INT
(
-
2
,
g_selectResult
);
...
...
@@ -668,7 +668,7 @@ LITE_TEST_CASE(LwipFuncTestSuite, testSelectOneClient, Function | MediumTest | L
g_selectTimeout
=
5
;
osThreadId_t
serverTaskId
=
osThreadNew
((
osThreadFunc_t
)
SelectServerTask
,
NULL
,
&
tSelect
);
TEST_ASSERT_NOT_NULL
(
serverTaskId
);
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
if
(
serverTaskId
==
NULL
)
{
printf
(
"create select server task fail!
\n
"
);
}
else
{
...
...
@@ -687,7 +687,7 @@ LITE_TEST_CASE(LwipFuncTestSuite, testSelectOneClient, Function | MediumTest | L
g_selectFlag
=
1
;
while
(
g_selectFlag
)
{
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
printf
(
"wait select server finish...
\n
"
);
}
TEST_ASSERT_EQUAL_INT
(
0
,
g_selectResult
);
...
...
communication_lite/wifiservice_hal/src/wifiservice_func_test.c
浏览文件 @
6eca25ea
...
...
@@ -21,7 +21,7 @@
#include <unistd.h>
#define DEF_TIMEOUT 15
#define ONE_SECOND 1
00
#define ONE_SECOND 1
#define LEVEL_ERROR (-1)
#define LEVEL_ONE 1
#define LEVEL_TWO 2
...
...
@@ -185,7 +185,7 @@ static void WaitScanResult(void)
{
int
scanTimeout
=
DEF_TIMEOUT
;
while
(
scanTimeout
>
0
)
{
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
scanTimeout
--
;
if
(
g_staScanSuccess
==
1
)
{
printf
(
"WaitScanResult:wait success[%d]s
\n
"
,
(
DEF_TIMEOUT
-
scanTimeout
));
...
...
@@ -522,7 +522,7 @@ LITE_TEST_CASE(WifiServiceFuncTestSuite, testEnableDisableHotSpot, Function | Me
int
timeout
=
3
;
g_apEnableSuccess
=
0
;
while
(
timeout
>
0
)
{
osDelay
(
ONE_SECOND
);
sleep
(
ONE_SECOND
);
timeout
--
;
if
(
g_apEnableSuccess
>=
1
)
{
printf
(
"Wait %d seconds.
\n
"
,
(
DEF_TIMEOUT
-
timeout
));
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录