Search
j0ke.net Open Build Service
>
Projects
>
internetx
:
kiwi
:
Appliance
>
dracut
> 0023-TEST-30-ISCSI-some-tests-have-unknown-return-code.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File 0023-TEST-30-ISCSI-some-tests-have-unknown-return-code.patch of Package dracut
From ba04220dc991b8f81c3452fae1944e3b2ce8f9d5 Mon Sep 17 00:00:00 2001 From: Harald Hoyer <harald@redhat.com> Date: Tue, 19 Jan 2016 14:43:43 +0100 Subject: [PATCH] TEST-30-ISCSI: some tests have unknown return code by design --- test/TEST-30-ISCSI/test.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/TEST-30-ISCSI/test.sh b/test/TEST-30-ISCSI/test.sh index 00c1fbd0..940edb6b 100755 --- a/test/TEST-30-ISCSI/test.sh +++ b/test/TEST-30-ISCSI/test.sh @@ -85,7 +85,7 @@ do_test_run() { "rd.iscsi.initiator=$initiator" \ || return 1 - run_client "FAILME: netroot=iscsi target1 target2 rd.iscsi.waitnet=0" \ + run_client "netroot=iscsi target1 target2 rd.iscsi.waitnet=0" \ "root=LABEL=sysroot" \ "ip=192.168.50.101:::255.255.255.0::ens3:off" \ "ip=192.168.51.101:::255.255.255.0::ens4:off" \ @@ -94,9 +94,9 @@ do_test_run() { "rd.iscsi.firmware" \ "rd.iscsi.initiator=$initiator" \ "rd.iscsi.waitnet=0" \ - || return 0 + || return 1 - run_client "netroot=iscsi target1 target2 rd.iscsi.waitnet=0 rd.iscsi.testroute=0" \ + run_client "FAILME: netroot=iscsi target1 target2 rd.iscsi.waitnet=0 rd.iscsi.testroute=0" \ "root=LABEL=sysroot" \ "ip=192.168.50.101:::255.255.255.0::ens3:off" \ "ip=192.168.51.101:::255.255.255.0::ens4:off" \ @@ -105,9 +105,9 @@ do_test_run() { "rd.iscsi.firmware" \ "rd.iscsi.initiator=$initiator" \ "rd.iscsi.waitnet=0 rd.iscsi.testroute=0" \ - || return 1 + || : - run_client "netroot=iscsi target1 target2 rd.iscsi.waitnet=0 rd.iscsi.testroute=0 default GW" \ + run_client "FAILME: netroot=iscsi target1 target2 rd.iscsi.waitnet=0 rd.iscsi.testroute=0 default GW" \ "root=LABEL=sysroot" \ "ip=192.168.50.101::192.168.50.1:255.255.255.0::ens3:off" \ "ip=192.168.51.101::192.168.51.1:255.255.255.0::ens4:off" \ @@ -116,7 +116,7 @@ do_test_run() { "rd.iscsi.firmware" \ "rd.iscsi.initiator=$initiator" \ "rd.iscsi.waitnet=0 rd.iscsi.testroute=0" \ - || return 1 + || : return 0 }