qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v1 1/1] iotests: bypass s390x for case 200
@ 2018-03-06  7:54 QingFeng Hao
  2018-03-06  7:56 ` Christian Borntraeger
  0 siblings, 1 reply; 3+ messages in thread
From: QingFeng Hao @ 2018-03-06  7:54 UTC (permalink / raw)
  To: qemu-block
  Cc: qemu-devel, kwolf, peterx, dgilbert, mreitz, cohuck, borntraeger,
	zyimin, famz, QingFeng Hao

In s390x, the case 200 failed as:
 === Starting QEMU VM ===

+QEMU_PROG: boot menu is not supported for this device type.
 {"return": {}}

 === Sending stream/cancel, checking for SIGSEGV only ===
Failures: 200
Failed 1 of 1 tests

It was caused by the command which isn't supported by s390x now:
qemu-system-s390x -device pci-bridge,id=bridge1,chassis_nr=1,bus=pci.0 -object iothread,id=iothread0 -device virtio-scsi-pci,bus=bridge1,addr=0x1f,id=scsi0,iothread=iothread0 -drive file=.../scratch/test.img,media=disk,if=none,cache=writeback,id=drive_sysdisk,format=qcow2 -device scsi-hd,drive=drive_sysdisk,bus=scsi0.0,id=sysdisk,bootindex=0 -nographic

Signed-off-by: QingFeng Hao <haoqf@linux.vnet.ibm.com>
---
 tests/qemu-iotests/200 | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/qemu-iotests/200 b/tests/qemu-iotests/200
index ddbdedc476..7e53bd7774 100755
--- a/tests/qemu-iotests/200
+++ b/tests/qemu-iotests/200
@@ -45,6 +45,10 @@ _supported_fmt qcow2 qed
 _supported_proto file
 _supported_os Linux
 
+if [ "$QEMU_DEFAULT_MACHINE" != "pc" ]; then
+    _notrun "Requires a PC machine"
+fi
+
 BACKING_IMG="${TEST_DIR}/backing.img"
 TEST_IMG="${TEST_DIR}/test.img"
 
-- 
2.13.5

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

* Re: [Qemu-devel] [PATCH v1 1/1] iotests: bypass s390x for case 200
  2018-03-06  7:54 [Qemu-devel] [PATCH v1 1/1] iotests: bypass s390x for case 200 QingFeng Hao
@ 2018-03-06  7:56 ` Christian Borntraeger
  2018-03-07 10:55   ` QingFeng Hao
  0 siblings, 1 reply; 3+ messages in thread
From: Christian Borntraeger @ 2018-03-06  7:56 UTC (permalink / raw)
  To: QingFeng Hao, qemu-block
  Cc: qemu-devel, kwolf, peterx, dgilbert, mreitz, cohuck, zyimin, famz

Nack. This will be fixed by 

s390/ipl: only print boot menu error if -boot menu=on was specified

On 03/06/2018 08:54 AM, QingFeng Hao wrote:
> In s390x, the case 200 failed as:
>  === Starting QEMU VM ===
> 
> +QEMU_PROG: boot menu is not supported for this device type.
>  {"return": {}}
> 
>  === Sending stream/cancel, checking for SIGSEGV only ===
> Failures: 200
> Failed 1 of 1 tests
> 
> It was caused by the command which isn't supported by s390x now:
> qemu-system-s390x -device pci-bridge,id=bridge1,chassis_nr=1,bus=pci.0 -object iothread,id=iothread0 -device virtio-scsi-pci,bus=bridge1,addr=0x1f,id=scsi0,iothread=iothread0 -drive file=.../scratch/test.img,media=disk,if=none,cache=writeback,id=drive_sysdisk,format=qcow2 -device scsi-hd,drive=drive_sysdisk,bus=scsi0.0,id=sysdisk,bootindex=0 -nographic
> 
> Signed-off-by: QingFeng Hao <haoqf@linux.vnet.ibm.com>
> ---
>  tests/qemu-iotests/200 | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/tests/qemu-iotests/200 b/tests/qemu-iotests/200
> index ddbdedc476..7e53bd7774 100755
> --- a/tests/qemu-iotests/200
> +++ b/tests/qemu-iotests/200
> @@ -45,6 +45,10 @@ _supported_fmt qcow2 qed
>  _supported_proto file
>  _supported_os Linux
> 
> +if [ "$QEMU_DEFAULT_MACHINE" != "pc" ]; then
> +    _notrun "Requires a PC machine"
> +fi
> +
>  BACKING_IMG="${TEST_DIR}/backing.img"
>  TEST_IMG="${TEST_DIR}/test.img"
> 

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

* Re: [Qemu-devel] [PATCH v1 1/1] iotests: bypass s390x for case 200
  2018-03-06  7:56 ` Christian Borntraeger
@ 2018-03-07 10:55   ` QingFeng Hao
  0 siblings, 0 replies; 3+ messages in thread
From: QingFeng Hao @ 2018-03-07 10:55 UTC (permalink / raw)
  To: Christian Borntraeger, qemu-block
  Cc: qemu-devel, kwolf, peterx, dgilbert, mreitz, cohuck, zyimin, famz



在 2018/3/6 15:56, Christian Borntraeger 写道:
> Nack. This will be fixed by
> 
> s390/ipl: only print boot menu error if -boot menu=on was specified
You are right. After I applied that patch, the case is passed.
Please ignore this patch. Thanks
> 
> On 03/06/2018 08:54 AM, QingFeng Hao wrote:
>> In s390x, the case 200 failed as:
>>   === Starting QEMU VM ===
>>
>> +QEMU_PROG: boot menu is not supported for this device type.
>>   {"return": {}}
>>
>>   === Sending stream/cancel, checking for SIGSEGV only ===
>> Failures: 200
>> Failed 1 of 1 tests
>>
>> It was caused by the command which isn't supported by s390x now:
>> qemu-system-s390x -device pci-bridge,id=bridge1,chassis_nr=1,bus=pci.0 -object iothread,id=iothread0 -device virtio-scsi-pci,bus=bridge1,addr=0x1f,id=scsi0,iothread=iothread0 -drive file=.../scratch/test.img,media=disk,if=none,cache=writeback,id=drive_sysdisk,format=qcow2 -device scsi-hd,drive=drive_sysdisk,bus=scsi0.0,id=sysdisk,bootindex=0 -nographic
>>
>> Signed-off-by: QingFeng Hao <haoqf@linux.vnet.ibm.com>
>> ---
>>   tests/qemu-iotests/200 | 4 ++++
>>   1 file changed, 4 insertions(+)
>>
>> diff --git a/tests/qemu-iotests/200 b/tests/qemu-iotests/200
>> index ddbdedc476..7e53bd7774 100755
>> --- a/tests/qemu-iotests/200
>> +++ b/tests/qemu-iotests/200
>> @@ -45,6 +45,10 @@ _supported_fmt qcow2 qed
>>   _supported_proto file
>>   _supported_os Linux
>>
>> +if [ "$QEMU_DEFAULT_MACHINE" != "pc" ]; then
>> +    _notrun "Requires a PC machine"
>> +fi
>> +
>>   BACKING_IMG="${TEST_DIR}/backing.img"
>>   TEST_IMG="${TEST_DIR}/test.img"
>>

-- 
Regards
QingFeng Hao

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

end of thread, other threads:[~2018-03-07 10:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-06  7:54 [Qemu-devel] [PATCH v1 1/1] iotests: bypass s390x for case 200 QingFeng Hao
2018-03-06  7:56 ` Christian Borntraeger
2018-03-07 10:55   ` QingFeng Hao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).