Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Kernel Liteos A
提交
243b1e26
K
Kernel Liteos A
项目概览
OpenHarmony
/
Kernel Liteos A
1 年多 前同步成功
通知
460
Star
414
Fork
55
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
4
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel Liteos A
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
4
Issue
4
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
243b1e26
编写于
5月 05, 2023
作者:
O
openharmony_ci
提交者:
Gitee
5月 05, 2023
浏览文件
操作
浏览文件
下载
差异文件
!1159 test:修复llvm升级导致tdd用例部分失败问题
Merge pull request !1159 from zhangdengyu/fixLlvmBug0428
上级
d9e96312
577d29aa
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
20 addition
and
20 deletion
+20
-20
testsuites/unittest/basic/exc/smoke/it_test_exc_001.cpp
testsuites/unittest/basic/exc/smoke/it_test_exc_001.cpp
+1
-1
testsuites/unittest/basic/exc/smoke/it_test_exc_002.cpp
testsuites/unittest/basic/exc/smoke/it_test_exc_002.cpp
+4
-3
testsuites/unittest/basic/exc/smoke/it_test_exc_003.cpp
testsuites/unittest/basic/exc/smoke/it_test_exc_003.cpp
+4
-3
testsuites/unittest/basic/exc/smoke/it_test_exc_004.cpp
testsuites/unittest/basic/exc/smoke/it_test_exc_004.cpp
+2
-2
testsuites/unittest/basic/exc/smoke/it_test_exc_005.cpp
testsuites/unittest/basic/exc/smoke/it_test_exc_005.cpp
+2
-2
testsuites/unittest/libc/posix/mqueue/full/It_posix_queue_040.cpp
...es/unittest/libc/posix/mqueue/full/It_posix_queue_040.cpp
+3
-3
testsuites/unittest/libc/posix/mqueue/full/It_posix_queue_113.cpp
...es/unittest/libc/posix/mqueue/full/It_posix_queue_113.cpp
+0
-2
testsuites/unittest/process/basic/process/smoke/process_test_008.cpp
...unittest/process/basic/process/smoke/process_test_008.cpp
+4
-4
未找到文件。
testsuites/unittest/basic/exc/smoke/it_test_exc_001.cpp
浏览文件 @
243b1e26
...
...
@@ -30,7 +30,7 @@
*/
#include "it_test_exc.h"
static
int
TestCase
(
void
)
__attribute__
((
optnone
))
static
int
TestCase
(
void
)
{
int
ret
;
int
status
=
0
;
...
...
testsuites/unittest/basic/exc/smoke/it_test_exc_002.cpp
浏览文件 @
243b1e26
...
...
@@ -31,7 +31,7 @@
#include "it_test_exc.h"
#include "pthread.h"
static
void
*
ThreadFunc2
(
void
*
arg
)
__attribute__
((
optnone
))
static
void
*
ThreadFunc2
(
void
*
arg
)
{
while
(
1
)
{
}
...
...
@@ -39,7 +39,7 @@ static void *ThreadFunc2(void *arg)
return
nullptr
;
}
static
void
*
ThreadFunc1
(
void
*
arg
)
__attribute__
((
optnone
))
static
void
*
ThreadFunc1
(
void
*
arg
)
{
int
*
test
=
nullptr
;
*
test
=
0x1
;
...
...
@@ -77,7 +77,8 @@ static int TestThread(void)
return
0
;
}
static
int
TestCase
(
void
)
__attribute__
((
optnone
))
static
int
TestCase
(
void
)
{
int
*
test
=
nullptr
;
int
count
=
5
;
...
...
testsuites/unittest/basic/exc/smoke/it_test_exc_003.cpp
浏览文件 @
243b1e26
...
...
@@ -34,14 +34,15 @@
#define TEST_THREAD_COUNT 5
static
volatile
int
g_testCondFlag
;
static
int
g_count
[
TEST_THREAD_COUNT
];
static
void
*
ThreadFunc2
(
void
*
arg
)
__attribute__
((
optnone
))
static
void
*
ThreadFunc2
(
void
*
arg
)
{
int
count
=
*
(
int
*
)
arg
;
int
*
test
=
nullptr
;
g_testCondFlag
++
;
while
(
g_testCondFlag
<
2
)
{
while
(
g_testCondFlag
<
2
)
{
/* 2, no special meaning */
}
*
test
=
0x1
;
...
...
@@ -83,7 +84,7 @@ static int TestThread(void)
return
0
;
}
static
int
TestCase
(
void
)
__attribute__
((
optnone
))
static
int
TestCase
(
void
)
{
int
*
test
=
nullptr
;
int
count
=
5
;
...
...
testsuites/unittest/basic/exc/smoke/it_test_exc_004.cpp
浏览文件 @
243b1e26
...
...
@@ -33,7 +33,7 @@
#define TEST_THREAD_COUNT 5
static
int
TestThread
(
void
)
__attribute__
((
optnone
))
static
int
TestThread
(
void
)
{
int
ret
;
int
*
test
=
nullptr
;
// For triggering an exceptioin
...
...
@@ -53,7 +53,7 @@ static int TestThread(void)
return
0
;
}
static
int
TestCase
(
void
)
__attribute__
((
optnone
))
static
int
TestCase
(
void
)
{
int
count
=
5
;
int
status
=
0
;
...
...
testsuites/unittest/basic/exc/smoke/it_test_exc_005.cpp
浏览文件 @
243b1e26
...
...
@@ -30,7 +30,7 @@
*/
#include "it_test_exc.h"
static
void
Child
(
void
)
__attribute__
((
optnone
))
static
void
Child
(
void
)
{
while
(
1
)
{
printf
(
"@@@@@@@@@@@@@ pid : %d getppid : %d @@@@@@@@@@@@@@@@
\n
"
,
getpid
(),
getppid
());
...
...
@@ -41,7 +41,7 @@ static void TestKill(int sig)
exit
(
0
);
}
static
int
TestCase
(
void
)
__attribute__
((
optnone
))
static
int
TestCase
(
void
)
{
int
ret
;
void
(
*
retptr
)(
int
)
=
NULL
;
...
...
testsuites/unittest/libc/posix/mqueue/full/It_posix_queue_040.cpp
浏览文件 @
243b1e26
...
...
@@ -30,7 +30,7 @@
*/
#include "It_posix_queue.h"
static
VOID
*
PthreadF01
(
VOID
*
argument
)
__attribute__
((
optnone
))
static
VOID
*
PthreadF01
(
VOID
*
argument
)
{
INT32
i
;
INT32
ret
;
...
...
@@ -54,7 +54,7 @@ EXIT:
return
NULL
;
}
static
VOID
*
PthreadF02
(
VOID
*
argument
)
__attribute__
((
optnone
))
static
VOID
*
PthreadF02
(
VOID
*
argument
)
{
INT32
j
,
ret
;
...
...
@@ -79,7 +79,7 @@ EXIT:
return
NULL
;
}
static
UINT32
Testcase
(
VOID
)
__attribute__
((
optnone
))
static
UINT32
Testcase
(
VOID
)
{
pthread_t
newTh1
,
newTh2
;
UINT32
ret
;
...
...
testsuites/unittest/libc/posix/mqueue/full/It_posix_queue_113.cpp
浏览文件 @
243b1e26
...
...
@@ -53,7 +53,6 @@ EXIT:
static
UINT32
Testcase
(
VOID
)
{
INT32
ret
;
UINT32
uret
;
CHAR
mqname
[
MQUEUE_STANDARD_NAME_LENGTH
]
=
""
;
const
CHAR
*
msgptr
=
MQUEUE_SEND_STRING_TEST
;
pthread_t
pthread1
;
...
...
@@ -92,7 +91,6 @@ static UINT32 Testcase(VOID)
ICUNIT_GOTO_EQUAL
(
ret
,
MQUEUE_NO_ERROR
,
ret
,
EXIT2
);
usleep
(
0
);
ICUNIT_GOTO_EQUAL
(
uret
,
MQUEUE_NO_ERROR
,
uret
,
EXIT2
);
ret
=
pthread_join
(
pthread1
,
NULL
);
ICUNIT_GOTO_EQUAL
(
ret
,
MQUEUE_NO_ERROR
,
ret
,
EXIT2
);
...
...
testsuites/unittest/process/basic/process/smoke/process_test_008.cpp
浏览文件 @
243b1e26
...
...
@@ -32,19 +32,19 @@
static
const
int
TEST_COUNT
=
10
;
static
void
*
ThreadFunc2
(
void
*
arg
)
__attribute__
((
optnone
))
static
void
*
ThreadFunc2
(
void
*
arg
)
{
printf
(
"111111111111111: exit
\n
"
);
exit
(
254
);
// 254, exit args
}
static
void
*
ThreadFunc3
(
void
*
arg
)
__attribute__
((
optnone
))
static
void
*
ThreadFunc3
(
void
*
arg
)
{
while
(
1
)
{
}
}
static
int
ProcessTest001
(
void
)
__attribute__
((
optnone
))
static
int
ProcessTest001
(
void
)
{
int
ret
;
int
status
;
...
...
@@ -81,7 +81,7 @@ static int ProcessTest001(void)
return
0
;
}
static
int
Testcase
(
void
)
__attribute__
((
optnone
))
static
int
Testcase
(
void
)
{
int
ret
;
int
status
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录