We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
c1166e0
k230
GCC
1.按照“步骤2”链接步骤,批量运行pse51测试例,部分失败; 2.步骤:maix3/software/userapps/testcases/pse51_test/README.md 3.代码:maix3/software/userapps/testcases/pse51_test 4.失败case:
other_tc/fork/3-1...FAILED other_tc/fork/2-1...FAILED pthread_tc/pthread_setschedparam/1-1...FAILED pthread_tc/pthread_cancel/2-3...FAILED pthread_tc/pthread_cancel/3-1...FAILED pthread_tc/pthread_cancel/1-1...FAILED pthread_tc/pthread_cancel/2-1...FAILED pthread_tc/pthread_cancel/2-2...FAILED pthread_tc/pthread_getschedparam/1-2...FAILED pthread_tc/pthread_cond_signal/4-1...FAILED sched_tc/sched_get_priority_max/2-1...FAILED sched_tc/sched_get_priority_min/2-1...FAILED signal_tc/sigqueue/7-1...FAILED signal_tc/sigqueue/2-1...FAILED signal_tc/killpg/6-1...FAILED signal_tc/killpg/8-1...FAILED signal_tc/killpg/5-1...FAILED std_tc/unistd_h/pipe_tc...FAILED std_tc/stdio_h/setbuf...FAILED time_tc/clock_settime/6-1...FAILED time_tc/clock_gettime/7-1...FAILED
No response
The text was updated successfully, but these errors were encountered:
#9943
Sorry, something went wrong.
pipe_tc需要打开 components/libc下的#define RT_USING_POSIX_PIPE
msh />pipe_tc msh />hello, world #1 hello, world #2 hello, world #3 {Test PASSED}
pthread_tc/pthread_getschedparam/1-2失败原因为smart还不支持调整policy
sched_tc/sched_get_priority_max/2-1: https://github.com/bminor/musl/blob/master/src/sched/sched_get_priority_max.c 这个函数在musl中没设置errno
pthread_tc/pthread_cancel/2-3:需要同步musl中pthread_cancel.c到最新版 增加了如下代码
static void cancel_handler(int sig, siginfo_t *si, void *ctx) { if (self->cancelasync) { pthread_sigmask(SIG_SETMASK, &uc->uc_sigmask, 0); __cancel(); } }
更改后qemu中测试成功
msh />cd pthread_cancel/ msh /pthread_cancel>2-3 msh /pthread_cancel>{Test PASSED} msh /pthread_cancel>
heyuanjie87
No branches or pull requests
RT-Thread Version
c1166e0
Hardware Type/Architectures
k230
Develop Toolchain
GCC
Describe the bug
1.按照“步骤2”链接步骤,批量运行pse51测试例,部分失败;
2.步骤:maix3/software/userapps/testcases/pse51_test/README.md
3.代码:maix3/software/userapps/testcases/pse51_test
4.失败case:
Other additional context
No response
The text was updated successfully, but these errors were encountered: