In perl.git, the branch blead has been updated

<https://perl5.git.perl.org/perl.git/commitdiff/0bb8cb436da6e18869ede1dfa3d55abc438bff5f?hp=e27e0631fbf47d38f2f3d50d87da9d07f13d9315>

- Log -----------------------------------------------------------------
commit 0bb8cb436da6e18869ede1dfa3d55abc438bff5f
Author: David Mitchell <[email protected]>
Date:   Tue Feb 19 09:12:33 2019 +0000

    re/user_prop_race_thr.t: reduce timeout
    
    This new test script has a test that's supposed to exercise an up-to 10s
    wait-and-retry loop when loading properties. It has a 500s timeout
    built-in for if that fails. On my system its been intermittently
    failing (not sure if due to something I'm doing or a problem with the
    test or with regcomp.c) which effectively hangs the test run.
    
    So decrease the timeout to 25 secs.

-----------------------------------------------------------------------

Summary of changes:
 t/re/user_prop_race_thr.t | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/t/re/user_prop_race_thr.t b/t/re/user_prop_race_thr.t
index 18d3eb5f41..c240a596c7 100644
--- a/t/re/user_prop_race_thr.t
+++ b/t/re/user_prop_race_thr.t
@@ -95,7 +95,7 @@ require threads;
 
             state $which = 0;
 
-            sleep(500) unless $which++;
+            sleep(25) unless $which++;
             return "0042";
         }
 

-- 
Perl5 Master Repository

Reply via email to