From 91d98ef4e90718227d9af28627c838fc73bd1e3e Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Thu, 17 Sep 2015 16:35:29 -0400 Subject: [PATCH 1/1] Tests: indefinitely wait for shm buffers to be unlinked MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- tests/regression/tools/crash/test_crash | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/tests/regression/tools/crash/test_crash b/tests/regression/tools/crash/test_crash index 35a5bd7bc..63a4a9734 100755 --- a/tests/regression/tools/crash/test_crash +++ b/tests/regression/tools/crash/test_crash @@ -87,19 +87,11 @@ function stop_test_app() 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 - 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 - return $timeout_flag + return 0 } function test_shm_path_per_pid() -- 2.34.1