* [LTP] Some LTP testcases are getting failed
@ 2016-01-25 8:02 Raghavendra Kakarla
2016-01-25 9:03 ` Stanislav Kholmanskikh
0 siblings, 1 reply; 4+ messages in thread
From: Raghavendra Kakarla @ 2016-01-25 8:02 UTC (permalink / raw)
To: ltp
Hi All,
I built the LTP for the yocto and ran it on the My board which has the Mips interaptive CPU.
After running all tests 42 test are getting failed.
I have examine the each failed test case and noted down the issue.
Following test cases are failed:
1.bind02 - unable to open the socket to testuser
2.chmod06 - Device busy error.
3.getrusage03 - memory allocation failed
4.Readahead02 - Page cache on our system is too small to hold whole testfile.
5.rt_sigaction01 - Gives the buss error.
Could you please help me to resolving this issues.
Thanks in Advance.
Regards,
Raghavendra K.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.linux.it/pipermail/ltp/attachments/20160125/e3cab8e4/attachment.html>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [LTP] Some LTP testcases are getting failed
2016-01-25 8:02 [LTP] Some LTP testcases are getting failed Raghavendra Kakarla
@ 2016-01-25 9:03 ` Stanislav Kholmanskikh
2016-01-25 9:37 ` Raghavendra Kakarla
0 siblings, 1 reply; 4+ messages in thread
From: Stanislav Kholmanskikh @ 2016-01-25 9:03 UTC (permalink / raw)
To: ltp
Hi!
On 01/25/2016 11:02 AM, Raghavendra Kakarla wrote:
> Hi All,
>
> I built the LTP for the yocto and ran it on the My board which has the
> Mips interaptive CPU.
>
> After running all tests 42 test are getting failed.
>
> I have examine the each failed test case and noted down the issue.
>
> Following test cases are failed:
>
> 1.bind02 - unable to open the socket to testuser
> 2.chmod06 - Device busy error.
> 3.getrusage03 - memory allocation failed
> 4.Readahead02 - Page cache on our system is too small to hold whole
> testfile.
> 5.rt_sigaction01 - Gives the buss error.
Regarding rt_sigaction01. Just a wild guess. Maybe ltp_rt_sigaction() in
include/lapi/rt_sigaction.h needs some MIPS-specific changes. Anyway, it
would be better if you provided the test output.
>
> Could you please help me to resolving this issues.
>
> Thanks in Advance.
>
> Regards,
> Raghavendra K.
>
>
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [LTP] Some LTP testcases are getting failed
2016-01-25 9:03 ` Stanislav Kholmanskikh
@ 2016-01-25 9:37 ` Raghavendra Kakarla
2016-01-26 15:54 ` Cyril Hrubis
0 siblings, 1 reply; 4+ messages in thread
From: Raghavendra Kakarla @ 2016-01-25 9:37 UTC (permalink / raw)
To: ltp
Hi Stanislav,
Thnak you for your response.
Following is the complete output of the rt_sigaction01 test case.
rt_sigaction01 0 TINFO : signal: 34
rt_sigaction01 1 TPASS : rt_sigaction call succeeded: result = 0
rt_sigaction01 0 TINFO : sa.sa_flags = SA_RESETHAND|SA_SIGINFO
Bus error
Regards,
Raghavendra K.
________________________________________
From: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
Sent: Monday, January 25, 2016 2:33 PM
To: Raghavendra Kakarla; ltp@lists.linux.it
Subject: Re: [LTP] Some LTP testcases are getting failed
Hi!
On 01/25/2016 11:02 AM, Raghavendra Kakarla wrote:
> Hi All,
>
> I built the LTP for the yocto and ran it on the My board which has the
> Mips interaptive CPU.
>
> After running all tests 42 test are getting failed.
>
> I have examine the each failed test case and noted down the issue.
>
> Following test cases are failed:
>
> 1.bind02 - unable to open the socket to testuser
> 2.chmod06 - Device busy error.
> 3.getrusage03 - memory allocation failed
> 4.Readahead02 - Page cache on our system is too small to hold whole
> testfile.
> 5.rt_sigaction01 - Gives the buss error.
Regarding rt_sigaction01. Just a wild guess. Maybe ltp_rt_sigaction() in
include/lapi/rt_sigaction.h needs some MIPS-specific changes. Anyway, it
would be better if you provided the test output.
>
> Could you please help me to resolving this issues.
>
> Thanks in Advance.
>
> Regards,
> Raghavendra K.
>
>
>
>
______________________________________________________________________
This email has been scanned by the Symantec Email Security.cloud service.
For more information please visit http://www.symanteccloud.com
______________________________________________________________________
^ permalink raw reply [flat|nested] 4+ messages in thread
* [LTP] Some LTP testcases are getting failed
2016-01-25 9:37 ` Raghavendra Kakarla
@ 2016-01-26 15:54 ` Cyril Hrubis
0 siblings, 0 replies; 4+ messages in thread
From: Cyril Hrubis @ 2016-01-26 15:54 UTC (permalink / raw)
To: ltp
Hi!
> Hi Stanislav,
> Thnak you for your response.
>
> Following is the complete output of the rt_sigaction01 test case.
> rt_sigaction01 0 TINFO : signal: 34
> rt_sigaction01 1 TPASS : rt_sigaction call succeeded: result = 0
> rt_sigaction01 0 TINFO : sa.sa_flags = SA_RESETHAND|SA_SIGINFO
> Bus error
Looks like Stanislav was right. Have a look at
sysdeps/unix/sysv/linux/mips/sigaction.c in glibc to get an idea what
should be added to LTP to include/lapi/sigaction.h.
--
Cyril Hrubis
chrubis@suse.cz
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-01-26 15:54 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-25 8:02 [LTP] Some LTP testcases are getting failed Raghavendra Kakarla
2016-01-25 9:03 ` Stanislav Kholmanskikh
2016-01-25 9:37 ` Raghavendra Kakarla
2016-01-26 15:54 ` Cyril Hrubis
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox