From 1052ed2cbc4be3106f4efc98a474ed1ea89e1723 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Fri, 21 Sep 2007 21:01:45 +0000 Subject: [PATCH] Adjust timing to avoid spurious test failures on busy machines. [SVN r39466] --- historic/jam/test/parallel_multifile_actions.jam | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/historic/jam/test/parallel_multifile_actions.jam b/historic/jam/test/parallel_multifile_actions.jam index 1d63daa73..a81f7b2bc 100644 --- a/historic/jam/test/parallel_multifile_actions.jam +++ b/historic/jam/test/parallel_multifile_actions.jam @@ -21,7 +21,7 @@ else { actions .gen. { echo 001 -sleep 1 +sleep 4 echo 002 } rule .use.1 { DEPENDS $(<) : $(>) ; } @@ -30,6 +30,7 @@ echo 003 } rule .use.2 { DEPENDS $(<) : $(>) ; } actions .use.2 { +sleep 1 echo 004 }