Edgerouter-ltp: Difference between revisions

From Yocto Project
Jump to navigationJump to search
(Created page with "==1.6 M5 RC2 20140402 build== '''total: 35''' {|border="1" || '''LTP cases'''|| '''status''' || '''error msg''' || '''comment''' || '''bugzilla''' |- || getrusage03 || NAB || ge...")
 
Line 4: Line 4:
|| '''LTP cases'''|| '''status''' || '''error msg''' || '''comment''' || '''bugzilla'''
|| '''LTP cases'''|| '''status''' || '''error msg''' || '''comment''' || '''bugzilla'''
|-
|-
|| getrusage03 || NAB || getrusage03_child    1  TBROK  :  malloc failed at getrusage03_child.c:154: errno=ENOMEM(12): Cannot allocate memory
|| eventfd01 || NAB || eventfd01    0  TINFO  :  error submitting iocb: errno=EINVAL(22): Invalid argument
|| Not enough memory. MPC8315e-rdb has 128M memory. ||
eventfd01  13  TBROK  :  error triggering eventfd overflow
eventfd01    0  TINFO  :  error submitting iocb: errno=EINVAL(22): Invalid argument
eventfd01  14  TBROK  :  error triggering eventfd overflow
eventfd01    0  TINFO  :  error submitting iocb: errno=EINVAL(22): Invalid argument
eventfd01  15  TBROK  :  error triggering eventfd overflow
||  ||
|-
|| getrusage03 || NAB || getrusage03_child    1  TBROK  :  malloc failed at getrusage03_child.c:158: errno=ENOMEM(12): Cannot allocate memory
|| Not enough memory. ||
|-
|-
|| fanotify01 || NAB || fanotify01    1  TCONF  :  fanotify is not configured in this kernel. ||  ||
|| fanotify01 || NAB || fanotify01    1  TCONF  :  fanotify is not configured in this kernel. ||  ||
Line 13: Line 21:
|| fanotify04 || NAB || fanotify04    1  TCONF  :  fanotify is not configured in this kernel. ||  ||
|| fanotify04 || NAB || fanotify04    1  TCONF  :  fanotify is not configured in this kernel. ||  ||
|-
|-
|| readahead02 || NAB || readahead02   0 TWARN using less cache than expected || The system doesn't have /proc/pid/io, unable to determine read bytes during test ||
|| io_submit01 || NAB || io_submit01   6 TFAIL unexpected failure - returned value = -22 : Invalid argument, expected value = -9 : Bad file descriptor
|-
||  ||
|| sendmsg02 || LTP || sendmsg02[569]: unhandled signal 11 at 00000001 nip 480f9290 lr 100011fc code 30001 Segmentation fault || This is a LTP testcase bug. According to the semctl manual, the fourth argument of semctl should has the uion semun type if the cmd is SETVAL.
So we should replace all the "semctl(sem_id, 0, SETVAL, 1)" or "semctl(sem_id, 0, SETVAL, 0)" in sendmsg02.c to something like this:
      union semun arg;
      arg.val = 1 or 0;
      semctl(sem_id, 0, SETVAL, arg);
||
|-
|-
|| setregid02 || LTP || setregid02    1  TBROK  :  getgrnam("nobody") failed: errno=???(0): Success ||  ||
|| setregid02 || LTP || setregid02    1  TBROK  :  getgrnam("nobody") failed: errno=???(0): Success ||  ||
|-
|-
|| setregid02_16 || LTP || setregid02_16    1  TBROK  :  getgrnam("nobody") failed: errno=???(0): Success ||  ||
|| setregid02_16 || LTP || setregid02_16    1  TBROK  :  getgrnam("nobody") failed: errno=???(0): Success ||  ||
|-
|| sigaltstack02 || LTP || sigaltstack02    2  TFAIL  :  sigaltstack() returned 0, expected -1, errno:12 || The value of MINSIGSTKSZ defined by glibc can be different as the value defined by kernel. Should use value which is low enough for all kernel versions. Already fixed in upstream. ||
|-
|-
|| syslog01 || [[qemux86-ltp|qemux86]] ||  ||  ||
|| syslog01 || [[qemux86-ltp|qemux86]] ||  ||  ||
Line 48: Line 48:
|| syslog10 || [[qemux86-ltp|qemux86]] ||  ||  ||
|| syslog10 || [[qemux86-ltp|qemux86]] ||  ||  ||
|-
|-
|| mtest06_2 || NAB || main(): mmap(): Cannot allocate memory || Not enough memory. Mpc8315e-rdb has 128M memory. ||
|| aio01 || || aio01      1  TFAIL  : Test 1: io_submit failed - retval=-22, errno=0
|| ||
|-
|| aio02 ||  || io_submit tio: Invalid argument
||  ||
|-
|-
|| mmapstress06 || [[qemux86-ltp|qemux86]] || mmapstress06: errno = 12; large mmap failed
|| mtest06_2 || NAB || main(): mmap(): Cannot allocate memory || Not enough memory. ||
for this test to run, it needs a mmap space of 32769 pages
|| ||
|-
|-
|| thp02 || NAB || thp02      1  TBROK  :  cannot find "Hugepagesize:" in /proc/meminfo || PPC doesn't support it  ||
|| thp02 || NAB || thp02      1  TBROK  :  cannot find "Hugepagesize:" in /proc/meminfo || MIPS64 doesn't support it  ||
|-
|-
|| thp03 || NAB || thp03      1  TBROK  :  cannot find "Hugepagesize:" in /proc/meminfo || PPC doesn't support it  ||
|| thp03 || NAB || thp03      1  TBROK  :  cannot find "Hugepagesize:" in /proc/meminfo || MIPS64 doesn't support it  ||
|-
|-
|| su01 || [[qemux86-ltp|qemux86]] ||  ||  ||
|| su01 || [[qemux86-ltp|qemux86]] ||  ||  ||

Revision as of 03:34, 9 April 2014

1.6 M5 RC2 20140402 build

total: 35

LTP cases status error msg comment bugzilla
eventfd01 NAB eventfd01 0 TINFO  : error submitting iocb: errno=EINVAL(22): Invalid argument

eventfd01 13 TBROK  : error triggering eventfd overflow eventfd01 0 TINFO  : error submitting iocb: errno=EINVAL(22): Invalid argument eventfd01 14 TBROK  : error triggering eventfd overflow eventfd01 0 TINFO  : error submitting iocb: errno=EINVAL(22): Invalid argument eventfd01 15 TBROK  : error triggering eventfd overflow

getrusage03 NAB getrusage03_child 1 TBROK  : malloc failed at getrusage03_child.c:158: errno=ENOMEM(12): Cannot allocate memory Not enough memory.
fanotify01 NAB fanotify01 1 TCONF  : fanotify is not configured in this kernel.
fanotify02 NAB fanotify02 1 TCONF  : fanotify is not configured in this kernel.
fanotify04 NAB fanotify04 1 TCONF  : fanotify is not configured in this kernel.
io_submit01 NAB io_submit01 6 TFAIL  : unexpected failure - returned value = -22 : Invalid argument, expected value = -9 : Bad file descriptor
setregid02 LTP setregid02 1 TBROK  : getgrnam("nobody") failed: errno=???(0): Success
setregid02_16 LTP setregid02_16 1 TBROK  : getgrnam("nobody") failed: errno=???(0): Success
syslog01 qemux86
syslog02 qemux86
syslog03 qemux86
syslog04 qemux86
syslog05 qemux86
syslog06 qemux86
syslog07 qemux86
syslog08 qemux86
syslog09 qemux86
syslog10 qemux86
aio01 aio01 1 TFAIL  : Test 1: io_submit failed - retval=-22, errno=0
aio02 io_submit tio: Invalid argument
mtest06_2 NAB main(): mmap(): Cannot allocate memory Not enough memory.
thp02 NAB thp02 1 TBROK  : cannot find "Hugepagesize:" in /proc/meminfo MIPS64 doesn't support it
thp03 NAB thp03 1 TBROK  : cannot find "Hugepagesize:" in /proc/meminfo MIPS64 doesn't support it
su01 qemux86
cron02 qemux86
cron_deny01 qemux86
cron_allow01 qemux86
cron_dirs_checks01 qemux86
file qemux86
cron qemux86
logrotate qemux86
cpio qemux86
unzip01 qemux86
gzip01 qemux86