POSIX-results: Difference between revisions

From Yocto Project
Jump to navigationJump to search
 
(177 intermediate revisions by the same user not shown)
Line 4: Line 4:
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].
The online POSIX specification could be viewed at [http://pubs.opengroup.org/onlinepubs/007904975/mindex.html IEEE Std 1003.1, 2004 Edition].


The POSIX test suite is from ltp and current version is 20120903. All POSIX test cases can be get at  
The POSIX test suite is from ltp. All POSIX test cases can be get at  
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].
[http://ltp.git.sourceforge.net/git/gitweb.cgi?p=ltp/ltp.git;a=tree;f=testcases/open_posix_testsuite POSIX git repository].


Test POSIX on following platforms:
Test POSIX on following platforms:
*beagleboard
*beaglebone
*mpc8315rdb
*mpc8315rdb
*routerstation
*edgerouter
*sugarbay
*genericx86-64
*blacksand
*huronriver


There are 1794 test cases in total, only failed items are list here.
There are 1794 test cases in total, only failed items are list here.
Line 58: Line 56:
'''POSIX''': that test case is in development, that causes the test fails
'''POSIX''': that test case is in development, that causes the test fails


===Current Milestone (1.4 M4 RC1 20130220 build)===
===Current Milestone (3.1 RC2 build)===
'''Yocto 1.4 M3 RC2 20130131 build''' with POSIX test suite version '''20120903'''.
'''Yocto 3.1 RC2 build''' with POSIX test suite version '''20200120'''.


====AIO====
====AIO====
Line 67: Line 65:
|| '''POSIX cases'''|| '''status''' || '''platforms''' || '''error msg''' || '''analysis''' ||'''bugzilla'''
|| '''POSIX cases'''|| '''status''' || '''platforms''' || '''error msg''' || '''analysis''' ||'''bugzilla'''
|-
|-
|| lio_listio/11-1 || '''Not A Bug''' || sugarbay blacksand huronriver mpc8315e routerstation beagleboard ||  
|| aio_error_3-1 || '''Not A Bug''' || genericx86-64 edgerouter beaglebone || conformance/interfaces/aio_error/3-1: execution: UNTESTED ||  
conformance/interfaces/lio_listio/11-1: execution: '''FAILED'''
This test tries to call aio_error with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL.
lio_listio/11-1.c Error lio_listio() should have returned -1
||  
for aio_lio_opcode posix says "The supported operations are LIO_READ, LIO_WRITE, and LIO_NOP"
but it does not say what should happen if the value it not one of the above.  


eglibc doesn't validate the parameter aio_lio_opcode when in function __aio_enqueue_request called by lio_listio()
The POSIX spec says about aio_error:
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2660 Yocto 2660]
The aio_error( ) function may fail if:
[EINVAL]  The aiocbp argument does not refer to an asynchronous operation whose return status has not yet been retrieved.
||
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]
|-
|| aio_read_9-1 || '''Not A Bug''' || genericx86-64 edgerouter beaglebone  || conformance/interfaces/aio_read/9-1: execution: UNSUPPORTED ||
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return '''UNSUPPORTED'''.
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.
||
|-
|-
 
|| aio_return_2-1 || '''Not A Bug''' || genericx86-64 edgerouter beaglebone  || conformance/interfaces/aio_return/2-1: execution: UNTESTED ||
|| aio_return/2-1 || '''Not A Bug''' || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/2-1: execution: UNRESOLVED
aio_return/2-1.c Second call to aio_return() '''may''' return -1;
aio_return() returned 111
||  
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation.  
In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation.  
 
In glibc the return value is same as first return.  
In eglibc the return value is same as first return.  
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]
|-
|-
 
|| aio_return_3-2 || '''Not A Bug''' || genericx86-64 edgerouter beaglebone  || conformance/interfaces/aio_return/3-2: execution: UNTESTED ||
|| aio_return/3-2 || '''Not A Bug''' || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/3-2: execution: UNRESOLVED  ||
Same with aio_return/2-1
Same with aio_return/2-1
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]
||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]
|-
|-
 
|| aio_return_4-1 || '''Not A Bug''' || genericx86-64 edgerouter beaglebone  || conformance/interfaces/aio_return/4-1: execution: UNTESTED ||
|| aio_return/4-1 || '''Not A Bug''' || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_return/4-1: execution: UNRESOLVED  ||
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.
call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.
||
||
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2665 Yocto 2665]
|-
|-
 
|| aio_suspend_5-1 || POSIX  || genericx86-64 edgerouter beaglebone  || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED ||  
|| aio_error/3-1 || '''Not A Bug''' || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_error/3-1: execution: UNRESOLVED ||  
'''''Stub Case'''''
call aio_error with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.
Test case is a stub
||
||
[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2666 Yocto 2666]
|-
|-
 
|| aio_write_7-1 || '''Not A Bug''' || genericx86-64 edgerouter beaglebone || conformance/interfaces/aio_write/7-1: execution: UNSUPPORTED ||  
|| aio_read/9-1 || '''Not A Bug''' || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/9-1: execution: UNRESOLVED ||
ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return '''UNSUPPORTED'''.
 
Test case try to overflow the aio queue, but not quit sure the critical value on different OS.
 
||
|-
 
|| aio_write/7-1 || '''Not A Bug''' || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/7-1: execution: UNRESOLVED  ||  
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return '''UNSUPPORTED'''.
ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return '''UNSUPPORTED'''.
Test case try to overflow the aio queue, but const value 1024 is not enough
Test case try to overflow the aio queue, but const value 1024 is not enough
||
|-
|| aio_suspend/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/2-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is a stub
||
|-
|| aio_suspend/5-1 || POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED  ||
'''''Stub Case'''''
Test case is a stub
||
|-
|| aio_fsync/1-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/1-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
|| N/A
|-
|| aio_fsync/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/2-1: execution: UNTESTED  ||
'''''Stub Case'''''
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED
||
|-
|| aio_fsync/3-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/3-1: execution: UNTESTED  ||
'''''Stub Case'''''
The case just test the return value of aio_fsync, if not equal to 0, return FAIL, else return UNTESTED
||
|-
|| aio_fsync/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/6-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
|| N/A
|-
|| aio_fsync/7-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/7-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
|| N/A
|-
|| aio_fsync/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/10-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
|| N/A
|-
|| aio_fsync/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/11-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
|| N/A
|-
|| aio_fsync/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_fsync/13-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
|| N/A
|-
|| aio_read/2-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/2-1: execution: UNSUPPORTED  ||
'''''Stub Case'''''
Just test _SC_ASYNCHRONOUS_IO value.
||
|-
|| aio_read/6-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/6-1: execution: UNTESTED  ||
'''''Stub Case'''''
Same with aio_read/2-1
||
|-
|| aio_read/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/12-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
|| N/A
|-
|| aio_read/13-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/13-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
|| N/A
|-
|| aio_read/14-1 ||POSIX  || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/14-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
|| N/A
|-
|| aio_read/15-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_read/15-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
|| N/A
|-
|| aio_write/4-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/4-1: execution: UNSUPPORTED  ||
'''''Stub Case'''''
Test case is a stub
||
|-
|| aio_write/10-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/10-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is a stub
||
|-
|| aio_write/11-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/11-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is a stub
||
|-
|| aio_write/12-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/12-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is a stub
||
|-
|| aio_write/13-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/aio_write/13-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is a stub
||
|-
|| lio_listio/16-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/16-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
||
|-
|| lio_listio/17-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/17-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
||
|-
|| lio_listio/19-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/19-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
||
|-
|| lio_listio/20-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/20-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
||
|-
|| lio_listio/21-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/21-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
||
|-
|| lio_listio/22-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/22-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
||
|-
|| lio_listio/23-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/23-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
||
|-
|| lio_listio/24-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/24-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is not complete, and just return UNTESTED
||
|-
|| lio_listio/25-1 || POSIX || sugarbay blacksand huronriver mpc8315e routerstation beagleboard || conformance/interfaces/lio_listio/25-1: execution: UNTESTED  ||
'''''Stub Case'''''
Test case is a stub
||
||
|-
|-
Line 337: Line 112:
|| '''POSIX cases'''|| '''status''' || '''platforms''' || '''error msg''' || '''analysis''' ||'''bugzilla'''
|| '''POSIX cases'''|| '''status''' || '''platforms''' || '''error msg''' || '''analysis''' ||'''bugzilla'''
|-
|-
|| n/a ||  ||  ||   ||  
|| n/a ||  ||  || ||  ||  
 
|-
||  
|}
|}


====SEM====
====SEM====


{|border="1"  
{|border="1"  
|| '''POSIX cases'''|| '''status''' || '''platforms''' || '''error msg''' || '''analysis''' ||'''bugzilla'''
|| '''POSIX cases'''|| '''status''' || '''platforms''' || '''error msg''' || '''analysis''' ||'''bugzilla'''
|-
|-
|| sem_init/7-1  ||  '''Unsupported'''  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||
|| sem_init_7-1  ||  '''Unsupported'''  || edgerouter genericx86-64 beaglebone || conformance/interfaces/sem_init/sem_init_7-1: execution: UNTESTED
   [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1
   [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1
   [17:07:31]File ../../../conformance/interfaces
   [17:07:31]File ../../../conformance/interfaces
Line 356: Line 129:
Then return '''UNTESTED'''
Then return '''UNTESTED'''


|| In eglibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1.  
|| In glibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1.  


No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.
No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.


It return UNTESTED([[Result Codes]]), we don't need care it.
It return UNTESTED, we don't need care it.


|| n/a
||
|}
|}


Line 371: Line 144:
|| '''POSIX cases'''|| '''status''' || '''platforms''' || '''error msg''' || '''analysis''' ||'''bugzilla'''
|| '''POSIX cases'''|| '''status''' || '''platforms''' || '''error msg''' || '''analysis''' ||'''bugzilla'''
|-
|-
|| pthread_cond_broadcast/1-2  || '''Limitted to memory''' || routerstation mpc8315e blacksand || conformance/interfaces/pthread_cond_broadcast/1-2: execution: UNTESTED ||  
|| pthread_barrier_destroy_2-1 || Unsupported || genericx86-64 edgerouter beaglebone || conformance/interfaces/pthread_barrier_destroy/pthread_barrier_destroy_2-1: execution: UNSUPPORTED || The case becomes invalid after glibc-2.23 ||
|-
|| pthread_cond_destroy_speculative_4-1 || Unsupported || beaglebone edgerouter || conformance/interfaces/pthread_cond_destroy/speculative/pthread_cond_destroy_speculative_4-1: execution: UNSUPPORTED ||  ||
|-
|| pthread_mutex_init_speculative_5-2 || Unsupported || beaglebone edgerouter || conformance/interfaces/pthread_mutex_init/speculative/pthread_mutex_init_speculative_5-2: execution: UNSUPPORTED || ||
|-
|| pthread_mutexattr_gettype_speculative_3-1 || Untested || beaglebone edgerouter || conformance/interfaces/pthread_mutexattr_gettype/speculative/pthread_mutexattr_gettype_speculative_3-1: execution: UNTESTED ||  ||
|-
|| pthread_cond_broadcast_1-2 || '''Limitted to memory''' || edgerouter || conformance/interfaces/pthread_cond_broadcast/1-2: execution: UNTESTED ||  
The case create 1000 process, and check the system memory. If system available memory size less than it requires, the case exit with UNTESTED.
The case create 1000 process, and check the system memory. If system available memory size less than it requires, the case exit with UNTESTED.
 
When run single case on routerstation, it passed. But fails to run single case even just after reboot.
When run single case on routherstation, it passed. But fails on mpc8315e to run single case even just after reboot.
||
|-
|| pthread_rwlock_rdlock_2-1 || Unsupport by glibc || edgerouter genericx86-64 beaglebone || conformance/interfaces/pthread_rwlock_rdlock/pthread_rwlock_rdlock_2-1: execution: FAILED ||
Main thread read lock 'rwlock' with high priority. Child thread1 write lock 'wrlock' with medium priority will block. child thread2 read lock 'rwlock' with low priority should block because a high priority write lock is waiting, but read lock doesn't block. This test case is to test option '''Thread Execution Scheduling''' of pthread rwlock. But glibc/libc don't support this option. They provide a rwlock->__data.'''__flags''' option to identify perfer 'read lock' or write lock, and the default is 'read lock' first. So second reader can get the lock when a higher priority writer is waiting for the lock.
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported.  
||
||
|-
|-
|| pthread_detach/4-3 || Fixed || routerstation || conformance/interfaces/pthread_detach/4-3: execution: SIGNALED || ||[https://bugzilla.yoctoproject.org/show_bug.cgi?id=2862 Yocto 2862]
|| pthread_rwlock_rdlock_2-2 || Unsupport by glibc  || edgerouter genericx86-64 beaglebone || conformance/interfaces/pthread_rwlock_rdlock/pthread_rwlock_rdlock_2-2: execution: FAILED ||
Main thread read lock 'rwlock' with high priority. Child thread1 write lock 'wrlock' with low priority will block. child thread2 read lock 'rwlock' with same low priority should block because a same priority write lock is waiting, but read lock doesn't block. See pthread_rwlock_rdlock/2-1
||
|-
|-
|| pthread_create/1-6        || POSIX    || beagleboard routerstation mpc8315e ||  
|| pthread_rwlock_unlock_4-1 || Unsupported || genericx86-64 edgerouter beaglebone || cconformance/interfaces/pthread_rwlock_unlock/pthread_rwlock_unlock_4-1: execution: UNSUPPORTED || Unlocking uninitialized rwlock is undefined on Linux ||
execution: HUNG
|| testcase create NCPU=4 threads running with a high priority with the same sched policy policy and one with a low-priority. The low-priority thread should not run until the other threads stop running, unless the machine has more than NCPU processors. Redefine NCPU = sysconf(_SC_NPROCESSORS_CONF), testcase should pass || n/a
 
|-
|-
 
|| pthread_rwlock_unlock_4-2 || Unsupported || genericx86-64 edgerouter beaglebone || cconformance/interfaces/pthread_rwlock_unlock/pthread_rwlock_unlock_4-2: execution: UNSUPPORTED || Unlocking uninitialized rwlock is undefined on Linux ||
|| pthread_rwlock_rdlock/2-1  || Unsupport by eglibc    || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread read lock 'rwlock' with high priority. Child thread1 write lock 'wrlock' with medium priority will block. child thread2 read lock 'rwlock' with low priority should block because a high priority write lock is waiting, but read lock doesn't block.  || This test case is to test option '''Thread Execution Scheduling''' of pthread rwlock. But eglibc/libc don't support this option. They provide a rwlock->__data.'''__flags''' option to identify perfer 'read lock' or write lock, and the default is 'read lock' first. So second reader can get the lock when a higher priority writer is waiting for the lock.
 
A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported.
 
||
|-
|-
 
|| pthread_rwlock_unlock_3-1 || Unsupport by glibc || edgerouter genericx86-64 beaglebone || conformance/interfaces/pthread_rwlock_unlock/pthread_rwlock_unlock_3-1: execution: FAILED ||
|| pthread_rwlock_rdlock/2-|| Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||Main thread read lock 'rwlock' with high priority. Child thread1 write lock 'wrlock' with low priority will block. child thread2 read lock 'rwlock' with same low priority should block because a same priority write lock is waiting, but read lock doesn't block. || See pthread_rwlock_rdlock/2-1 ||
Main thread write lock 'rwlock' with high priority. Child thread1 write lock 'wrlock' with medium priority will block. Child thread2 read lock 'wrlock' with same mediumpriority. Child thread3 write lock 'wrlock' with low priority. When main thread unlock 'rwlock', child thread1 get the 'wrlock'. When child thread1 unlock 'rwlock', child thread2 should get the read lock 'wrlock' because it has higher priority than child thread3. But it is the child thread3 who get the 'wrlock'. See pthread_rwlock_rdlock/2-1
 
||  
|-
|-
|| pthread_rwlock_unlock/3-1  ||  Unsupport by eglibc  || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || Main thread write lock 'rwlock' with high priority. Child thread1 write lock 'wrlock' with medium priority will block. Child thread2 read lock 'wrlock' with same mediumpriority. Child thread3 write lock 'wrlock' with low priority. When main thread unlock 'rwlock', child thread1 get the 'wrlock'. When child thread1 unlock 'rwlock', child thread2 should get the read lock 'wrlock' because it has higher priority than child thread3. But it is the child thread3 who get the 'wrlock'.  || See pthread_rwlock_rdlock/2-1 ||
|}
|}


Line 403: Line 181:
|| '''POSIX cases'''|| '''status''' || '''platforms''' || '''error msg''' || '''analysis''' ||'''bugzilla'''
|| '''POSIX cases'''|| '''status''' || '''platforms''' || '''error msg''' || '''analysis''' ||'''bugzilla'''
|-
|-
|| timer_getoverrun/3-1       || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || '''Stub Case'''
|| clock_1-1 || || genericx86-64 || conformance/interfaces/clock/clock_1-1: execution: FAILED || ||
 
Just print something and then return UNTESTED
|| n/a
|-
|-
 
|| clock_getcpuclockid_5-1 || '''Implement related''' || edgerouter genericx86-64 beaglebone || conformance/interfaces/clock_getcpuclockid/clock_getcpuclockid_5-1: execution: UNTESTED
|| clock_getcpuclockid/5-1   || '''Implement related''' || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  
conformance/interfaces/clock_getcpuclockid/5-1: execution: '''UNRESOLVED'''
   clock_getcpuclockid(1, ..) passed unexpectedly  
   clock_getcpuclockid(1, ..) passed unexpectedly  
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process 'init' cpu time, it succeeds but expect fails with EPERM.
|| Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process 'init' cpu time, it succeeds but expect fails with EPERM.
 
This is '''not supported''' by Linux. In man page, it addresses EPERM "Specified as an '''optional error''' in POSIX.1-2001; '''Does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.'''".  
This is '''not supported''' by Linux. In man page, it addresses EPERM "Specified as an '''optional error''' in POSIX.1-2001; '''does not occur on Linux unless the kernel does not support obtaining the per-process  CPU-time clock of another process.'''".  
||
 
|-
 
|| n/a
|}
|}


Line 425: Line 196:
|| '''POSIX cases'''|| '''status''' || '''platforms''' || '''error msg''' || '''analysis''' ||'''bugzilla'''
|| '''POSIX cases'''|| '''status''' || '''platforms''' || '''error msg''' || '''analysis''' ||'''bugzilla'''
|-
|-
|| mq_close/5-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED ||
|| n/a || ||  ||  || ||  
'''Stub Case'''
 
Just print something and then return UNTESTED
|| n/a
|-
 
|| mq_open/4-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || '''Stub Case'''
 
Just print something and then return UNTESTED
|| n/a
 
|-
|| mq_open/10-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || '''Stub Case'''
Just print something and then return UNTESTED
|| n/a
 
|-
|| mq_open/14-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || '''Stub Case'''
Just print something and then return UNTESTED
|| n/a
 
|-
|| mq_open/17-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || '''Stub Case'''
Just print something and then return UNTESTED
|| n/a
 
|-
|| mq_open/22-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || '''Stub Case'''
Just print something and then return UNTESTED
|| n/a
 
|-
|| mq_open/24-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || '''Stub Case'''
Just print something and then return UNTESTED
|| n/a
 
|-
|| mq_open/25-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || '''Stub Case'''
Just print something and then return UNTESTED
|| n/a
 
|-
|| mq_open/28-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || '''Stub Case'''
Just print something and then return UNTESTED
|| n/a
 
|-
|| mq_open/30-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || '''Stub Case'''
Just print something and then return UNTESTED
|| n/a
 
|-
|| mq_send/6-1              || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || '''Stub Case'''
Just print something and then return UNTESTED
|| n/a
 
|-
||mq_timedsend/6-1          || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || '''Stub Case'''
Just print something and then return UNTESTED
|| n/a
 
|-
||mq_timedsend/17-1          || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||UNTESTED || '''Stub Case'''
Just print something and then return UNTESTED
|| n/a
 
|-
|-
||mq_unlink/2-3              || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || UNTESTED || '''Stub Case'''
Just print something and then return UNTESTED
|| n/a
|}
|}


Line 503: Line 205:
|| '''POSIX cases'''|| '''status''' || '''platforms''' || '''error msg''' || '''analysis''' ||'''bugzilla'''
|| '''POSIX cases'''|| '''status''' || '''platforms''' || '''error msg''' || '''analysis''' ||'''bugzilla'''
|-
|-
||sched_getparam/6-1         || '''Not Supported'''     || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || conformance/interfaces/sched_getparam/6-1: execution: '''UNRESOLVED'''
||sched_get_priority_max_1-3 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_get_priority_max/sched_get_priority_max_1-3: execution: UNSUPPORTED || Schedule policy SCHED_SPORADIC is not supported by linux ||
  Testing with user deamon (euid, uid) = (1, 1)
|-
  The function sched_getparam has successed.
||sched_get_priority_min_1-3 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_get_priority_min/sched_get_priority_min_1-3: execution: UNSUPPORTED || Schedule policy SCHED_SPORADIC is not supported by linux ||
|-
||sched_getparam_6-1 || '''Not Supported''' || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_getparam/6-1: execution: UNTESTED
Testing with user deamon (euid, uid) = (1, 1)
The function sched_getparam has successed.
||  
||  
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0.  
This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0.  
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission.  
It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission.  
For default security operations, security_task_getscheduler() is a stub function and just return 0.
For default security operations, security_task_getscheduler() is a stub function and just return 0.  
 
In the manual of sched_getparam about return value:
EPERM  The calling process does not have appropriate privileges (Linux: does not have the CAP_SYS_NICE capability).
||
||
|-
|-
||sched_getscheduler/7-1     || '''Not Supportted'''   || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||conformance/interfaces/sched_getscheduler/7-1: execution: '''FAILED'''
||sched_getscheduler_7-1 || '''Not Supportted''' || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_getscheduler/7-1: execution: UNTESTED
Testing with user deamon (uid: 1)
Testing with user deamon (uid: 1)
The function sched_getscheduler has successed.
The function sched_getscheduler has successed.
 
|| Similiar with sched_getparam/6-1
|| Similiar with sched_getparam/6-1
|| n/a
||
 
|-
|-
 
||sched_setparam_20-1 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setparam/sched_setparam_20-1: execution: UNSUPPORTED || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux ||  
||sched_get_priority_max/1-3 || Ignore     || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
 
|-
|-
||sched_get_priority_min/1-3 || Ignore     || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
||sched_setparam_21-1 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setparam/sched_setparam_21-1: execution: UNSUPPORTED || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux ||  
 
 
|-
|-
||sched_getscheduler/2-1    || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
||sched_setparam_21-2 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setparam/sched_setparam_21-2: execution: UNSUPPORTED || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux ||  
 
|-
|-
||sched_setparam/3-1        || POSIX          || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
||sched_setparam_23-2 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setparam/sched_setparam_23-2: execution: UNSUPPORTED || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux ||  
 
|-
|-
||sched_setparam/6-1        || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
||sched_setparam_23-3 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setparam/sched_setparam_23-3: execution: UNSUPPORTED || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux ||  
 
|-
|-
||sched_setparam/7-1        || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
||sched_setparam_23-4 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setparam/sched_setparam_23-4: execution: UNSUPPORTED || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux ||  
 
|-
|-
||sched_setparam/8-1        || POSIX          || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
||sched_setparam_23-5 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setparam/sched_setparam_23-5: execution: UNSUPPORTED || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux ||  
 
|-
|-
||sched_setparam/12-1 || Ignore     || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
||sched_setparam_25-2 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setparam/sched_setparam_25-2: execution: UNSUPPORTED || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux ||  
 
|-
|-
||sched_setparam/13-1 || Ignore     || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
||sched_setparam_25-3 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setparam/sched_setparam_25-3: execution: UNSUPPORTED || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux ||  
 
|-
|-
||sched_setparam/14-1 || Ignore     || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
||sched_setparam_25-4 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setparam/sched_setparam_25-4: execution: UNSUPPORTED || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux ||  
 
|-
|-
||sched_setparam/15-1 || Ignore     || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
||sched_setscheduler_17-2 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setscheduler/sched_setscheduler_17-2: execution: UNSUPPORTED || Schedule policy SCHED_SPORADIC is not supported by linux ||
 
|-
|-
||sched_setparam/16-1 || Ignore     || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
||sched_setscheduler_17-3 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setscheduler/sched_setscheduler_17-3: execution: UNSUPPORTED || Schedule policy SCHED_SPORADIC is not supported by linux ||
 
|-
|-
||sched_setparam/17-1        || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
||sched_setscheduler_17-4 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setscheduler/sched_setscheduler_17-4: execution: UNSUPPORTED || Schedule policy SCHED_SPORADIC is not supported by linux ||
 
|-
||sched_setparam/18-1        || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
 
|-
||sched_setparam/19-1        || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
 
|-
||sched_setparam/20-1        || Ignore       || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a
 
|-
||sched_setparam/21-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a
 
|-
||sched_setparam/21-2        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux || n/a
 
|-
|-
||sched_setparam/23-2 || Ignore     || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
||sched_setscheduler_15-1 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setscheduler/sched_setscheduler_15-1: execution: UNSUPPORTED || Schedule policy SCHED_SPORADIC is not supported by linux ||
 
|-
|-
|| sched_setparam/23-3      || Ignore     || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
||sched_setscheduler_15-2 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setscheduler/sched_setscheduler_15-2: execution: UNSUPPORTED || Schedule policy SCHED_SPORADIC is not supported by linux ||
 
|-
|-
||sched_setparam/23-4        || Ignore     || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
||sched_setscheduler_19-2 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setscheduler/sched_setscheduler_19-2: execution: UNSUPPORTED || Schedule policy SCHED_SPORADIC is not supported by linux ||
 
|-
|-
||sched_setparam/23-5      || Ignore     || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
||sched_setscheduler_19-3 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setscheduler/sched_setscheduler_19-3: execution: UNSUPPORTED || Schedule policy SCHED_SPORADIC is not supported by linux ||
 
 
|-
|-
||sched_setparam/25-2      || Ignore     || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
||sched_setscheduler_19-4 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setscheduler/sched_setscheduler_19-4: execution: UNSUPPORTED || Schedule policy SCHED_SPORADIC is not supported by linux ||
 
 
|-
|-
||sched_setparam/25-3      || Ignore     || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
||sched_setscheduler_22-1 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setscheduler/sched_setscheduler_22-1: execution: UNSUPPORTED || Schedule policy SCHED_SPORADIC is not supported by linux ||
 
 
|-
|-
||sched_setparam/25-4      || Ignore     || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
||sched_setscheduler_22-2 || Ignore || edgerouter genericx86-64 beaglebone || conformance/interfaces/sched_setscheduler/sched_setscheduler_22-2: execution: UNSUPPORTED || Schedule policy SCHED_SPORADIC is not supported by linux ||
 
 
|-
|-
||sched_setscheduler/2-1          || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
|-
||sched_setscheduler/5-1        || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
|-
||sched_setscheduler/6-1        || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
|-
||sched_setscheduler/7-1        || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
|-
||sched_setscheduler/9-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
|-
||sched_setscheduler/10-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
|-
||sched_setscheduler/11-1        || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
|-
||sched_setscheduler/12-1        || POSIX          || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
|-
||sched_setscheduler/13-1        || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
|-
||sched_setscheduler/14-1        || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
|-
||sched_setscheduler/15-1        || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
|-
||sched_setscheduler/15-2        || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
|-
||sched_setscheduler/17-2      || Ignore      || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
|-
||sched_setscheduler/17-3      || Ignore      || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
|-
||sched_setscheduler/17-4      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
|-
||sched_setscheduler/19-2      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
|-
||sched_setscheduler/19-3      || Ignore      ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
|-
||sched_setscheduler/19-4      || Ignore      || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver || || Schedule policy SCHED_SPORADIC is not supported by linux || n/a
|-
||sched_setscheduler/22-1        || POSIX          || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
|-
||sched_setscheduler/22-2        || POSIX          || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || Just print something and then return || n/a
|}
|}


Line 673: Line 273:
|| '''POSIX cases'''|| '''status''' || '''platforms''' || '''error msg''' || '''analysis''' ||'''bugzilla'''
|| '''POSIX cases'''|| '''status''' || '''platforms''' || '''error msg''' || '''analysis''' ||'''bugzilla'''
|-
|-
|| mmap/11-4                   || '''Not Supported''' || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  
|| mmap_31-1 || '''Not Supported''' || genericx86-64 edgerouter || conformance/interfaces/mmap/mmap_31-1: execution: UNSUPPORTED ||
This case is NOT supported by Linux. Test parameters length and offset for mmap() are too large. In function get_unmapped_area(), it checks that length should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value differs on different platforms.
||
|-
|| mmap_11-4 || '''Not Supported''' || edgerouter genericx86-64 beaglebone || conformance/interfaces/mmap/mmap_11-4: execution: UNTESTED
   pa: 0x400fb000  
   pa: 0x400fb000  
   pa_2: 0x40115000  
   pa_2: 0x40115000  
Line 679: Line 283:
   at the end of an object is written out
   at the end of an object is written out
|| This case maps a file with length of 1/2 * page_size, then write char 'b' to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character 'b'.  
|| This case maps a file with length of 1/2 * page_size, then write char 'b' to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character 'b'.  
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page.  
Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page.  
The mapped page is cached. This case is not supported by Linux.
The mapped page is cached. This case is not supported by Linux.
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==>  sys_mmap_pgoff() ==> do_mmap_pgoff() ==> mmap_region() ==> file->f_op->mmap(). In ext3 file system, file->f_op->mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the '''Page Fault Exception Handler''' to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache.  
mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==>  sys_mmap_pgoff() ==> do_mmap_pgoff() ==> mmap_region() ==> file->f_op->mmap(). In ext3 file system, file->f_op->mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the '''Page Fault Exception Handler''' to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache.  
|| n/a
||
 
|-
|-
|| mmap/11-5                    || '''Not Supported''' || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  
|| shm_open_39-1 || '''LTP''' || edgerouter genericx86-64 beaglebone || conformance/interfaces/shm_open/shm_open_39-1: execution: UNTESTED || Glibc 2.19 restricts shm_open and shm_unlink to SHMDIR: http://sourceware.org/git/?p=glibc.git;a=commit;h=5d30d853295a5fe04cad22fdf649c5e0da6ded8c Then if the file name is too long, shm_open will return EINVAL, not ENAMETOOLONG
  Modification of the partial page
||
  at the end of an object is written out
|| Same with mmap/11-4, and this case test share memory instead of regular file.
 
shmfs's file->f_op->mmap() point to shm_fault() in ipc/shm.c, then it call shmem_fault() ==> shmem_getpage() ==> shmem_getpage_gfp() ==> find_lock_page(). In find_lock_page() it will search the desired pagecache page.
|| n/a
 
|-
|-
|| mmap/27-1                    || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver || || This case try to test implement which doesn't support flag MAP_FIXED. eglibc supports this flag so the case quits with UNTESTED  || n/a
|| shm_open_39-2 || '''LTP''' || edgerouter genericx86-64 beaglebone || conformance/interfaces/shm_open/shm_open_39-2: execution: UNTESTED || Glibc 2.19 restricts shm_open and shm_unlink to SHMDIR: http://sourceware.org/git/?p=glibc.git;a=commit;h=5d30d853295a5fe04cad22fdf649c5e0da6ded8c  Then if the file name is too long, shm_open will return EINVAL, not ENAMETOOLONG
 
||
|-
|-
|| mmap/28-1                   || '''Not Supported''' || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  
|| shm_unlink_10-1 || '''LTP''' || edgerouter genericx86-64 beaglebone || conformance/interfaces/shm_unlink/shm_unlink_10-1: execution: UNTESTED || Glibc 2.19 restricts shm_open and shm_unlink to SHMDIR: http://sourceware.org/git/?p=glibc.git;a=commit;h=5d30d853295a5fe04cad22fdf649c5e0da6ded8c  Then if the file name is too long, shm_unlink will return ENOENT, not ENAMETOOLONG
  Test Fail: mmap/28-1.c Got no error at mmap()
||
|| This case tests mmap() with length of 2 timed file size and expects fail with errno ENXIO( No such device or address), but mmap() successed.  
 
Because Linux kernel just make the mmap connection between file and memory when mmap() called. When first read/write, the kernel mmap the physical file page to the virtual memory page. So it doesn't fail in mmap().
 
This case is NOT supported by Linux.
|| n/a
 
|-
|-
|| mmap/31-1                    || POSIX || mpc8315e beagleboard sugarbay blacksand huronriver ||
|| shm_unlink_10-2 || '''LTP''' || edgerouter genericx86-64 beaglebone || conformance/interfaces/shm_unlink/shm_unlink_10-2: execution: UNTESTED || Glibc 2.19 restricts shm_open and shm_unlink to SHMDIR: http://sourceware.org/git/?p=glibc.git;a=commit;h=5d30d853295a5fe04cad22fdf649c5e0da6ded8c Then if the file name is too long, shm_unlink will return ENOENT, not ENAMETOOLONG
 
||
off: fffff000, len: fffff000
 
expect EOVERFLOW but get other error: Cannot allocate memory
 
|| Parameters lenth and offset for mmap() are too large. Case 24-2 with same length expects mmap() failed with ENOMEM.
 
In function get_unmapped_area(), it checks len should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value on different platforms
beagleboard    0xC0000000 - 0x01000000 = 0xBF000000
mpc8315e      0xc0000000
routerstation  0x7fff8000UL
sugarbay      0xffff880000000000
    || n/a         
 
|-
|| shm_open/2-1                || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver || || test code just return PTS_UNTESTED and do nothing || n/a
|-
|| shm_open/3-1 || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a
 
|-
|| shm_open/6-1                || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a
 
|-
|| shm_open/7-1                || POSIX || beagleboard routerstation mpc8315e sugarbay blacksand huronriver ||  ||  test code just return PTS_UNTESTED and do nothing || n/a
 
|-
|| shm_open/9-1                || POSIX ||  beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a
 
|-
|| shm_open/10-1                || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a
 
|-
|| shm_open/12-1                || POSIX ||  beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a
 
|-
|| shm_open/19-1                || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a
 
|-
|| shm_open/24-1                || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||  ||test code just return PTS_UNTESTED and do nothing || n/a
 
|-
|| shm_open/27-1                || POSIX || beagleboard  routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a
 
|-
|| shm_open/29-1                || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a
 
|-
|| shm_open/36-1                || POSIX || beagleboard routerstation  mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a
 
|-
|-
|| shm_open/42-1                || POSIX || beagleboard  routerstation mpc8315e sugarbay blacksand huronriver ||  || test code just return PTS_UNTESTED and do nothing || n/a
|}
|}

Latest revision as of 04:36, 9 April 2020

Introduction

This page records the POSIX test results of Yocto for current version. History POSIX test results have been moved to https://wiki.yoctoproject.org/wiki/POSIX_History_Results. You can get more informations from POSIX test overall on Yocto.

The online POSIX specification could be viewed at IEEE Std 1003.1, 2004 Edition.

The POSIX test suite is from ltp. All POSIX test cases can be get at POSIX git repository.

Test POSIX on following platforms:

  • beaglebone
  • mpc8315rdb
  • edgerouter
  • genericx86-64

There are 1794 test cases in total, only failed items are list here.

Result Codes

These informations are from POSIX test suit Documentation/HOWTO_ResultCodes.

The PTS result codes are:

#define PTS_PASS        0
#define PTS_FAIL        1
#define PTS_UNRESOLVED  2
#define PTS_UNSUPPORTED 4
#define PTS_UNTESTED    5

A brief discussion of each of these follows:

PTP_PASS        Used when the test executes fully with no problems and passes.
PTP_FAIL        Used when the test executes fully, but fails.
PTP_UNRESOLVED  Used when the test was blocked from fully completing and
                the pass/failure results cannot be determined.
PTP_UNSUPPORTED Used if the test is for a conditional feature that is
                not implemented.
PTP_UNTESTED    Used when a feature does not have a test associated
                with it because:
                - The test is just a stub and doesn't do anything
                - The test is only partially complete and can't really
                  finish the test
                - The test is complete in some cases, but certain things
                  can happen that leave the test incomplete.  When these
                  happen, it's PTP_UNTESTED.

For every failed case which returns PTP_FAIL there is a item in https://bugzilla.yoctoproject.org to follow. For other cases which don't return PTP_PASS find the root cause.

Results and analysis

The results of groups SIG SEM THR TMR MSG TPS MEM are listed. Conclusion of some test cases have been given.

Values of clumn "status" descript the current status of the case. Some keywords include:

Bug: it is a bug and the test case needs to be fixed.

Ignore: the case is not appropriate for the hardware or linux

POSIX: that test case is in development, that causes the test fails

Current Milestone (3.1 RC2 build)

Yocto 3.1 RC2 build with POSIX test suite version 20200120.

AIO

POSIX cases status platforms error msg analysis bugzilla
aio_error_3-1 Not A Bug genericx86-64 edgerouter beaglebone conformance/interfaces/aio_error/3-1: execution: UNTESTED

This test tries to call aio_error with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL.

The POSIX spec says about aio_error: The aio_error( ) function may fail if: [EINVAL] The aiocbp argument does not refer to an asynchronous operation whose return status has not yet been retrieved.

Yocto 2666

aio_read_9-1 Not A Bug genericx86-64 edgerouter beaglebone conformance/interfaces/aio_read/9-1: execution: UNSUPPORTED

ltp commit 91d8c0c85c97366a7ec4ee08ef3b3e7a38661ac8 will check the limit of aio queue, if there is no limit, the case is not supported and return UNSUPPORTED. Test case try to overflow the aio queue, but not quit sure the critical value on different OS.

aio_return_2-1 Not A Bug genericx86-64 edgerouter beaglebone conformance/interfaces/aio_return/2-1: execution: UNTESTED

In specification, second call to aio_return() return -1 is a kind of possibility, depends on implementation. In glibc the return value is same as first return.

Yocto 2665
aio_return_3-2 Not A Bug genericx86-64 edgerouter beaglebone conformance/interfaces/aio_return/3-2: execution: UNTESTED

Same with aio_return/2-1

Yocto 2665
aio_return_4-1 Not A Bug genericx86-64 edgerouter beaglebone conformance/interfaces/aio_return/4-1: execution: UNTESTED

call aio_return with with argument aiocbp which does not point at a control block for an asynchronous I/O request, and expect error EINVAL. But this is optional.

Yocto 2665

aio_suspend_5-1 POSIX genericx86-64 edgerouter beaglebone conformance/interfaces/aio_suspend/5-1: execution: UNSUPPORTED

Stub Case Test case is a stub

aio_write_7-1 Not A Bug genericx86-64 edgerouter beaglebone conformance/interfaces/aio_write/7-1: execution: UNSUPPORTED

ltp commit b56638a7a8ae9cd37e5698de3186dc3cb1434cd8 will check the limit of aio queue, if there is no limit, the case is not supported and return UNSUPPORTED. Test case try to overflow the aio queue, but const value 1024 is not enough

SIG

POSIX cases status platforms error msg analysis bugzilla
n/a

SEM

POSIX cases status platforms error msg analysis bugzilla
sem_init_7-1 Unsupported edgerouter genericx86-64 beaglebone conformance/interfaces/sem_init/sem_init_7-1: execution: UNTESTED
 [17:07:31]sysconf(_SC_SEM_NSEMS_MAX) = -1
 [17:07:31]File ../../../conformance/interfaces
 /sem_init/7-1.c cannot test: There is no 
 constraint on SEM_NSEMS_MAX

Then return UNTESTED

In glibc, sysconf() is implemented in sysdeps/posix/sysconf.c. When pass _SC_SEM_NSEMS_MAX to sysconf(), it checks whether SEM_NSEMS_MAX is defined, then if defined return SEM_NSEMS_MAX, otherwise return -1.

No SEM_NSEMS_MAX defined in Yocto same as in Ubuntu and Fedora, so the case fails.

It return UNTESTED, we don't need care it.

THR

POSIX cases status platforms error msg analysis bugzilla
pthread_barrier_destroy_2-1 Unsupported genericx86-64 edgerouter beaglebone conformance/interfaces/pthread_barrier_destroy/pthread_barrier_destroy_2-1: execution: UNSUPPORTED The case becomes invalid after glibc-2.23
pthread_cond_destroy_speculative_4-1 Unsupported beaglebone edgerouter conformance/interfaces/pthread_cond_destroy/speculative/pthread_cond_destroy_speculative_4-1: execution: UNSUPPORTED
pthread_mutex_init_speculative_5-2 Unsupported beaglebone edgerouter conformance/interfaces/pthread_mutex_init/speculative/pthread_mutex_init_speculative_5-2: execution: UNSUPPORTED
pthread_mutexattr_gettype_speculative_3-1 Untested beaglebone edgerouter conformance/interfaces/pthread_mutexattr_gettype/speculative/pthread_mutexattr_gettype_speculative_3-1: execution: UNTESTED
pthread_cond_broadcast_1-2 Limitted to memory edgerouter conformance/interfaces/pthread_cond_broadcast/1-2: execution: UNTESTED

The case create 1000 process, and check the system memory. If system available memory size less than it requires, the case exit with UNTESTED. When run single case on routerstation, it passed. But fails to run single case even just after reboot.

pthread_rwlock_rdlock_2-1 Unsupport by glibc edgerouter genericx86-64 beaglebone conformance/interfaces/pthread_rwlock_rdlock/pthread_rwlock_rdlock_2-1: execution: FAILED

Main thread read lock 'rwlock' with high priority. Child thread1 write lock 'wrlock' with medium priority will block. child thread2 read lock 'rwlock' with low priority should block because a high priority write lock is waiting, but read lock doesn't block. This test case is to test option Thread Execution Scheduling of pthread rwlock. But glibc/libc don't support this option. They provide a rwlock->__data.__flags option to identify perfer 'read lock' or write lock, and the default is 'read lock' first. So second reader can get the lock when a higher priority writer is waiting for the lock. A Non-portable api pthread_rwlockattr_setkind_np() is provided to set this value. The test case is not supported.

pthread_rwlock_rdlock_2-2 Unsupport by glibc edgerouter genericx86-64 beaglebone conformance/interfaces/pthread_rwlock_rdlock/pthread_rwlock_rdlock_2-2: execution: FAILED

Main thread read lock 'rwlock' with high priority. Child thread1 write lock 'wrlock' with low priority will block. child thread2 read lock 'rwlock' with same low priority should block because a same priority write lock is waiting, but read lock doesn't block. See pthread_rwlock_rdlock/2-1

pthread_rwlock_unlock_4-1 Unsupported genericx86-64 edgerouter beaglebone cconformance/interfaces/pthread_rwlock_unlock/pthread_rwlock_unlock_4-1: execution: UNSUPPORTED Unlocking uninitialized rwlock is undefined on Linux
pthread_rwlock_unlock_4-2 Unsupported genericx86-64 edgerouter beaglebone cconformance/interfaces/pthread_rwlock_unlock/pthread_rwlock_unlock_4-2: execution: UNSUPPORTED Unlocking uninitialized rwlock is undefined on Linux
pthread_rwlock_unlock_3-1 Unsupport by glibc edgerouter genericx86-64 beaglebone conformance/interfaces/pthread_rwlock_unlock/pthread_rwlock_unlock_3-1: execution: FAILED

Main thread write lock 'rwlock' with high priority. Child thread1 write lock 'wrlock' with medium priority will block. Child thread2 read lock 'wrlock' with same mediumpriority. Child thread3 write lock 'wrlock' with low priority. When main thread unlock 'rwlock', child thread1 get the 'wrlock'. When child thread1 unlock 'rwlock', child thread2 should get the read lock 'wrlock' because it has higher priority than child thread3. But it is the child thread3 who get the 'wrlock'. See pthread_rwlock_rdlock/2-1

TMR

POSIX cases status platforms error msg analysis bugzilla
clock_1-1 genericx86-64 conformance/interfaces/clock/clock_1-1: execution: FAILED
clock_getcpuclockid_5-1 Implement related edgerouter genericx86-64 beaglebone conformance/interfaces/clock_getcpuclockid/clock_getcpuclockid_5-1: execution: UNTESTED
 clock_getcpuclockid(1, ..) passed unexpectedly 
Case tests permission. When call clock_getcpuclockid() as a unpriviledge user to get process 'init' cpu time, it succeeds but expect fails with EPERM.

This is not supported by Linux. In man page, it addresses EPERM "Specified as an optional error in POSIX.1-2001; Does not occur on Linux unless the kernel does not support obtaining the per-process CPU-time clock of another process.".

MSG

POSIX cases status platforms error msg analysis bugzilla
n/a

TPS

POSIX cases status platforms error msg analysis bugzilla
sched_get_priority_max_1-3 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_get_priority_max/sched_get_priority_max_1-3: execution: UNSUPPORTED Schedule policy SCHED_SPORADIC is not supported by linux
sched_get_priority_min_1-3 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_get_priority_min/sched_get_priority_min_1-3: execution: UNSUPPORTED Schedule policy SCHED_SPORADIC is not supported by linux
sched_getparam_6-1 Not Supported edgerouter genericx86-64 beaglebone conformance/interfaces/sched_getparam/6-1: execution: UNTESTED

Testing with user deamon (euid, uid) = (1, 1) The function sched_getparam has successed.

This case try to call sched_getparam as non-root user to get scheduling parameters of process with pid 0. It is a system call and implemented in kernel source sched/core.c. In SYSCALL_DEFINE2(sched_getparam, ...) it calls security_task_getscheduler() to check the permission. For default security operations, security_task_getscheduler() is a stub function and just return 0. In the manual of sched_getparam about return value: EPERM The calling process does not have appropriate privileges (Linux: does not have the CAP_SYS_NICE capability).

sched_getscheduler_7-1 Not Supportted edgerouter genericx86-64 beaglebone conformance/interfaces/sched_getscheduler/7-1: execution: UNTESTED

Testing with user deamon (uid: 1) The function sched_getscheduler has successed.

Similiar with sched_getparam/6-1
sched_setparam_20-1 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setparam/sched_setparam_20-1: execution: UNSUPPORTED PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux
sched_setparam_21-1 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setparam/sched_setparam_21-1: execution: UNSUPPORTED PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux
sched_setparam_21-2 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setparam/sched_setparam_21-2: execution: UNSUPPORTED PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux
sched_setparam_23-2 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setparam/sched_setparam_23-2: execution: UNSUPPORTED PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux
sched_setparam_23-3 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setparam/sched_setparam_23-3: execution: UNSUPPORTED PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux
sched_setparam_23-4 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setparam/sched_setparam_23-4: execution: UNSUPPORTED PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux
sched_setparam_23-5 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setparam/sched_setparam_23-5: execution: UNSUPPORTED PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux
sched_setparam_25-2 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setparam/sched_setparam_25-2: execution: UNSUPPORTED PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux
sched_setparam_25-3 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setparam/sched_setparam_25-3: execution: UNSUPPORTED PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux
sched_setparam_25-4 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setparam/sched_setparam_25-4: execution: UNSUPPORTED PTHREAD_SCOPE_PROCESS for pthread_attr_setscope() is not supported by linux
sched_setscheduler_17-2 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setscheduler/sched_setscheduler_17-2: execution: UNSUPPORTED Schedule policy SCHED_SPORADIC is not supported by linux
sched_setscheduler_17-3 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setscheduler/sched_setscheduler_17-3: execution: UNSUPPORTED Schedule policy SCHED_SPORADIC is not supported by linux
sched_setscheduler_17-4 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setscheduler/sched_setscheduler_17-4: execution: UNSUPPORTED Schedule policy SCHED_SPORADIC is not supported by linux
sched_setscheduler_15-1 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setscheduler/sched_setscheduler_15-1: execution: UNSUPPORTED Schedule policy SCHED_SPORADIC is not supported by linux
sched_setscheduler_15-2 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setscheduler/sched_setscheduler_15-2: execution: UNSUPPORTED Schedule policy SCHED_SPORADIC is not supported by linux
sched_setscheduler_19-2 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setscheduler/sched_setscheduler_19-2: execution: UNSUPPORTED Schedule policy SCHED_SPORADIC is not supported by linux
sched_setscheduler_19-3 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setscheduler/sched_setscheduler_19-3: execution: UNSUPPORTED Schedule policy SCHED_SPORADIC is not supported by linux
sched_setscheduler_19-4 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setscheduler/sched_setscheduler_19-4: execution: UNSUPPORTED Schedule policy SCHED_SPORADIC is not supported by linux
sched_setscheduler_22-1 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setscheduler/sched_setscheduler_22-1: execution: UNSUPPORTED Schedule policy SCHED_SPORADIC is not supported by linux
sched_setscheduler_22-2 Ignore edgerouter genericx86-64 beaglebone conformance/interfaces/sched_setscheduler/sched_setscheduler_22-2: execution: UNSUPPORTED Schedule policy SCHED_SPORADIC is not supported by linux

MEM

POSIX cases status platforms error msg analysis bugzilla
mmap_31-1 Not Supported genericx86-64 edgerouter conformance/interfaces/mmap/mmap_31-1: execution: UNSUPPORTED

This case is NOT supported by Linux. Test parameters length and offset for mmap() are too large. In function get_unmapped_area(), it checks that length should less than TASK_SIZE, otherwise it returns -ENOMEM. TASK_SIZE value differs on different platforms.

mmap_11-4 Not Supported edgerouter genericx86-64 beaglebone conformance/interfaces/mmap/mmap_11-4: execution: UNTESTED
 pa: 0x400fb000 
 pa_2: 0x40115000 
 Modification of the partial page
 at the end of an object is written out
This case maps a file with length of 1/2 * page_size, then write char 'b' to next byte of 1/2 * page_size. Then try to re-mmap() the file and expect the byte next to of 1/2 * page_size should not be character 'b'.

Test on all platforms are failed. The root cause is that after first mmap(), the mapped page for the file is cached in page cache. When do the 2nd or 3rd mmap() still get the same mapped page. The mapped page is cached. This case is not supported by Linux. mmap() is a system call and implemented by mmap2(). Then the call sequence is mmap2() ==> sys_mmap_pgoff() ==> do_mmap_pgoff() ==> mmap_region() ==> file->f_op->mmap(). In ext3 file system, file->f_op->mmap() point to generic_file_mmap(). In generic_file_mmap(), assign the Page Fault Exception Handler to filemap_fault(). When access the Virtual Memory Area, page fault will occur and the run filemap_fault(). In filemap_fault(), kernel run find_get_page() to search the physical page in the page cache.

shm_open_39-1 LTP edgerouter genericx86-64 beaglebone conformance/interfaces/shm_open/shm_open_39-1: execution: UNTESTED Glibc 2.19 restricts shm_open and shm_unlink to SHMDIR: http://sourceware.org/git/?p=glibc.git;a=commit;h=5d30d853295a5fe04cad22fdf649c5e0da6ded8c Then if the file name is too long, shm_open will return EINVAL, not ENAMETOOLONG
shm_open_39-2 LTP edgerouter genericx86-64 beaglebone conformance/interfaces/shm_open/shm_open_39-2: execution: UNTESTED Glibc 2.19 restricts shm_open and shm_unlink to SHMDIR: http://sourceware.org/git/?p=glibc.git;a=commit;h=5d30d853295a5fe04cad22fdf649c5e0da6ded8c Then if the file name is too long, shm_open will return EINVAL, not ENAMETOOLONG
shm_unlink_10-1 LTP edgerouter genericx86-64 beaglebone conformance/interfaces/shm_unlink/shm_unlink_10-1: execution: UNTESTED Glibc 2.19 restricts shm_open and shm_unlink to SHMDIR: http://sourceware.org/git/?p=glibc.git;a=commit;h=5d30d853295a5fe04cad22fdf649c5e0da6ded8c Then if the file name is too long, shm_unlink will return ENOENT, not ENAMETOOLONG
shm_unlink_10-2 LTP edgerouter genericx86-64 beaglebone conformance/interfaces/shm_unlink/shm_unlink_10-2: execution: UNTESTED Glibc 2.19 restricts shm_open and shm_unlink to SHMDIR: http://sourceware.org/git/?p=glibc.git;a=commit;h=5d30d853295a5fe04cad22fdf649c5e0da6ded8c Then if the file name is too long, shm_unlink will return ENOENT, not ENAMETOOLONG