Blame SOURCES/0076-Increase-timeout-for-rmmod-scsi_debug-and-make-it-a-.patch

0cb0b9
From 58986a509da1c6387435b27c4071944ee14613a2 Mon Sep 17 00:00:00 2001
0cb0b9
From: "Brian C. Lane" <bcl@redhat.com>
0cb0b9
Date: Fri, 24 Feb 2017 11:06:20 -0800
0cb0b9
Subject: [PATCH 76/77] Increase timeout for rmmod scsi_debug and make it a
0cb0b9
 framework failure
0cb0b9
0cb0b9
On some hardware scsi_debug can take longer to remove. If this fails it
0cb0b9
inevitably results in the next test failing since it cannot load
0cb0b9
scsi_debug.
0cb0b9
0cb0b9
Increse the timeout to 40 loops (8 seconds), and if it hits the limit
0cb0b9
without succeeding call framework_failure_
0cb0b9
0cb0b9
(cherry picked from commit 40e55a0819862d5dbe2098803735f8c48fb30b6d)
0cb0b9
---
0cb0b9
 tests/t-local.sh | 3 ++-
0cb0b9
 1 file changed, 2 insertions(+), 1 deletion(-)
0cb0b9
0cb0b9
diff --git a/tests/t-local.sh b/tests/t-local.sh
0cb0b9
index 13073d2..2ba7ee1 100644
0cb0b9
--- a/tests/t-local.sh
0cb0b9
+++ b/tests/t-local.sh
0cb0b9
@@ -27,13 +27,14 @@ scsi_debug_cleanup_()
0cb0b9
     # "Module scsi_debug is in use".
0cb0b9
     i=0
0cb0b9
     udevadm settle
0cb0b9
-    while [ $i -lt 10 ] ; do
0cb0b9
+    while [ $i -lt 40 ] ; do
0cb0b9
       rmmod scsi_debug \
0cb0b9
 	&& { test "$VERBOSE" = yes && warn_ $ME_ rmmod scsi_debug...; break; }
0cb0b9
       sleep .2 || sleep 1
0cb0b9
       i=$((i + 1))
0cb0b9
     done
0cb0b9
     udevadm settle
0cb0b9
+    test $i = 40 && framework_failure_ rmmod scsi_debug failed.
0cb0b9
   fi
0cb0b9
   rm -fr $scsi_debug_lock_dir_
0cb0b9
 }
0cb0b9
-- 
0cb0b9
2.9.3
0cb0b9