All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] Problem with QEMU PPC test image
@ 2016-11-17  2:25 Programmingkid
  2016-11-17 13:39 ` [Qemu-devel] [Qemu-ppc] " Thomas Huth
  0 siblings, 1 reply; 5+ messages in thread
From: Programmingkid @ 2016-11-17  2:25 UTC (permalink / raw)
  To: David Gibson, list@suse.de:PowerPC list:PowerPC; +Cc: qemu-devel qemu-devel

When I run this test disk image: http://wiki.qemu.org/download/ppc-virtexml507-linux-2_6_34.tgz

I see these error messages:
/selftest.sh: line 6: /usr/bin/sha1test: not found
/selftest.sh: line 7: /usr/bin/hmactest: not found


Maybe /usr/bin/sha1sum is what the first test should be. I don't see anything that looked like hmactest in the image file.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [Qemu-ppc] Problem with QEMU PPC test image
  2016-11-17  2:25 [Qemu-devel] Problem with QEMU PPC test image Programmingkid
@ 2016-11-17 13:39 ` Thomas Huth
  2016-11-17 15:44   ` G 3
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Huth @ 2016-11-17 13:39 UTC (permalink / raw)
  To: Programmingkid, qemu-ppc; +Cc: David Gibson, qemu-devel, Edgar E. Iglesias

On 17.11.2016 03:25, Programmingkid wrote:
> When I run this test disk image: http://wiki.qemu.org/download/ppc-virtexml507-linux-2_6_34.tgz
> 
> I see these error messages:
> /selftest.sh: line 6: /usr/bin/sha1test: not found
> /selftest.sh: line 7: /usr/bin/hmactest: not found
> 
> Maybe /usr/bin/sha1sum is what the first test should be. I don't see anything that looked like hmactest in the image file.

I guess these were test programs from the OpenSSL suite:

https://github.com/openssl/openssl/blob/master/test/sha1test.c
https://github.com/openssl/openssl/blob/master/test/hmactest.c

... but apparently have not been included in the image anymore. So I'd
suggest that you simply disable them in the selftest.sh script.

 Thomas


PS: Why is the qemu-ppc list called "list@suse.de:PowerPC list:PowerPC"
in the "To:" field of your mail?

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [Qemu-ppc] Problem with QEMU PPC test image
  2016-11-17 13:39 ` [Qemu-devel] [Qemu-ppc] " Thomas Huth
@ 2016-11-17 15:44   ` G 3
  2016-11-17 15:48     ` Edgar E. Iglesias
  0 siblings, 1 reply; 5+ messages in thread
From: G 3 @ 2016-11-17 15:44 UTC (permalink / raw)
  To: Thomas Huth; +Cc: qemu-ppc, David Gibson, qemu-devel, Edgar E. Iglesias


On Nov 17, 2016, at 8:39 AM, Thomas Huth wrote:

> On 17.11.2016 03:25, Programmingkid wrote:
>> When I run this test disk image: http://wiki.qemu.org/download/ppc- 
>> virtexml507-linux-2_6_34.tgz
>>
>> I see these error messages:
>> /selftest.sh: line 6: /usr/bin/sha1test: not found
>> /selftest.sh: line 7: /usr/bin/hmactest: not found
>>
>> Maybe /usr/bin/sha1sum is what the first test should be. I don't  
>> see anything that looked like hmactest in the image file.
>
> I guess these were test programs from the OpenSSL suite:
>
> https://github.com/openssl/openssl/blob/master/test/sha1test.c
> https://github.com/openssl/openssl/blob/master/test/hmactest.c
>
> ... but apparently have not been included in the image anymore. So I'd
> suggest that you simply disable them in the selftest.sh script.
>
>  Thomas

Thanks for the help.

> PS: Why is the qemu-ppc list called "list@suse.de:PowerPC  
> list:PowerPC"
> in the "To:" field of your mail?

I have no idea.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [Qemu-ppc] Problem with QEMU PPC test image
  2016-11-17 15:44   ` G 3
@ 2016-11-17 15:48     ` Edgar E. Iglesias
  2016-11-17 15:50       ` G 3
  0 siblings, 1 reply; 5+ messages in thread
From: Edgar E. Iglesias @ 2016-11-17 15:48 UTC (permalink / raw)
  To: G 3; +Cc: Thomas Huth, qemu-ppc, David Gibson, qemu-devel

On Thu, Nov 17, 2016 at 10:44:15AM -0500, G 3 wrote:
> 
> On Nov 17, 2016, at 8:39 AM, Thomas Huth wrote:
> 
> >On 17.11.2016 03:25, Programmingkid wrote:
> >>When I run this test disk image: http://wiki.qemu.org/download/ppc-virtexml507-linux-2_6_34.tgz
> >>
> >>I see these error messages:
> >>/selftest.sh: line 6: /usr/bin/sha1test: not found
> >>/selftest.sh: line 7: /usr/bin/hmactest: not found
> >>
> >>Maybe /usr/bin/sha1sum is what the first test should be. I don't see
> >>anything that looked like hmactest in the image file.
> >
> >I guess these were test programs from the OpenSSL suite:
> >
> >https://github.com/openssl/openssl/blob/master/test/sha1test.c
> >https://github.com/openssl/openssl/blob/master/test/hmactest.c
> >
> >... but apparently have not been included in the image anymore. So I'd
> >suggest that you simply disable them in the selftest.sh script.
> >
> > Thomas
> 
> Thanks for the help.

Hi,

Yes, I think I copied the /selftest.sh script from another rootfs for
another target that had all the openssl tests.

Cheers,
Edgar


> 
> >PS: Why is the qemu-ppc list called "list@suse.de:PowerPC list:PowerPC"
> >in the "To:" field of your mail?
> 
> I have no idea.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [Qemu-ppc] Problem with QEMU PPC test image
  2016-11-17 15:48     ` Edgar E. Iglesias
@ 2016-11-17 15:50       ` G 3
  0 siblings, 0 replies; 5+ messages in thread
From: G 3 @ 2016-11-17 15:50 UTC (permalink / raw)
  To: Edgar E. Iglesias; +Cc: Thomas Huth, qemu-ppc, David Gibson, qemu-devel


On Nov 17, 2016, at 10:48 AM, Edgar E. Iglesias wrote:

> On Thu, Nov 17, 2016 at 10:44:15AM -0500, G 3 wrote:
>>
>> On Nov 17, 2016, at 8:39 AM, Thomas Huth wrote:
>>
>>> On 17.11.2016 03:25, Programmingkid wrote:
>>>> When I run this test disk image: http://wiki.qemu.org/download/ 
>>>> ppc-virtexml507-linux-2_6_34.tgz
>>>>
>>>> I see these error messages:
>>>> /selftest.sh: line 6: /usr/bin/sha1test: not found
>>>> /selftest.sh: line 7: /usr/bin/hmactest: not found
>>>>
>>>> Maybe /usr/bin/sha1sum is what the first test should be. I don't  
>>>> see
>>>> anything that looked like hmactest in the image file.
>>>
>>> I guess these were test programs from the OpenSSL suite:
>>>
>>> https://github.com/openssl/openssl/blob/master/test/sha1test.c
>>> https://github.com/openssl/openssl/blob/master/test/hmactest.c
>>>
>>> ... but apparently have not been included in the image anymore.  
>>> So I'd
>>> suggest that you simply disable them in the selftest.sh script.
>>>
>>> Thomas
>>
>> Thanks for the help.
>
> Hi,
>
> Yes, I think I copied the /selftest.sh script from another rootfs for
> another target that had all the openssl tests.
>
> Cheers,
> Edgar

Could floating point instructions tests be included in the test image?

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-11-17 15:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-17  2:25 [Qemu-devel] Problem with QEMU PPC test image Programmingkid
2016-11-17 13:39 ` [Qemu-devel] [Qemu-ppc] " Thomas Huth
2016-11-17 15:44   ` G 3
2016-11-17 15:48     ` Edgar E. Iglesias
2016-11-17 15:50       ` G 3

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.