Tests: indefinitely wait for shm buffers to be unlinked
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 17 Sep 2015 20:35:29 +0000 (16:35 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 18 Sep 2015 16:38:16 +0000 (12:38 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
tests/regression/tools/crash/test_crash

index 35a5bd7bcb72fd858cd3338de2fe1d308157de1c..63a4a9734eac026e4a1a5dd58612c6ed87a45833 100755 (executable)
@@ -87,19 +87,11 @@ function stop_test_app()
 function verify_path_dont_exists()
 {
        local path=$1
 function verify_path_dont_exists()
 {
        local path=$1
-       local timeout_try_limit=100
-       local timeout_try_count=0
-       local timeout_flag=0
 
        while find $path -mindepth 1 -maxdepth 1 &>/dev/null ; do
 
        while find $path -mindepth 1 -maxdepth 1 &>/dev/null ; do
-               if [[ $timeout_try_count -gt $timeout_try_limit ]]; then
-                       timeout_flag=1
-                       break
-               fi
-               timeout_try_count=$((timeout_try_count+1))
-               sleep 0.1
+               sleep 2
        done
        done
-       return $timeout_flag
+       return 0
 }
 
 function test_shm_path_per_pid()
 }
 
 function test_shm_path_per_pid()
This page took 0.026379 seconds and 4 git commands to generate.