Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 79327 invoked from network); 25 Aug 2010 13:02:12 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 25 Aug 2010 13:02:12 -0000 Received: (qmail 75878 invoked by uid 500); 25 Aug 2010 13:02:12 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 75670 invoked by uid 500); 25 Aug 2010 13:02:09 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 75663 invoked by uid 99); 25 Aug 2010 13:02:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Aug 2010 13:02:08 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Aug 2010 13:02:07 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5D48F23888EA; Wed, 25 Aug 2010 13:00:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r989083 - /httpd/test/framework/trunk/t/modules/dav.t Date: Wed, 25 Aug 2010 13:00:50 -0000 To: cvs@httpd.apache.org From: rjung@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100825130050.5D48F23888EA@eris.apache.org> Author: rjung Date: Wed Aug 25 13:00:50 2010 New Revision: 989083 URL: http://svn.apache.org/viewvc?rev=989083&view=rev Log: One second is a bit to short to compensate agaist NFS time shifts. We can't fix it universally, but 2 seconds seem to be safe in most environments. Modified: httpd/test/framework/trunk/t/modules/dav.t Modified: httpd/test/framework/trunk/t/modules/dav.t URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/modules/dav.t?rev=989083&r1=989082&r2=989083&view=diff ============================================================================== --- httpd/test/framework/trunk/t/modules/dav.t (original) +++ httpd/test/framework/trunk/t/modules/dav.t Wed Aug 25 13:00:50 2010 @@ -54,7 +54,7 @@ ok $response->is_success; ## get properties ## ## Wait until none of the returned time ## properties equals "now" -sleep(1); +sleep(2); $response = $resource->propfind; print "getting DAV resource properties:\n"; ok $response->is_success;