Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B4042176A6 for ; Tue, 11 Nov 2014 21:38:57 +0000 (UTC) Received: (qmail 16668 invoked by uid 500); 11 Nov 2014 21:38:57 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 16637 invoked by uid 500); 11 Nov 2014 21:38:57 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 16627 invoked by uid 99); 11 Nov 2014 21:38:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 11 Nov 2014 21:38:57 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Tue, 11 Nov 2014 21:38:35 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id E366E23889D7; Tue, 11 Nov 2014 21:38:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1638437 - in /subversion/trunk/tools/buildbot/slaves/svn-x64-macosx: ./ svncheck.sh Date: Tue, 11 Nov 2014 21:38:33 -0000 To: commits@subversion.apache.org From: brane@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20141111213833.E366E23889D7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: brane Date: Tue Nov 11 21:38:33 2014 New Revision: 1638437 URL: http://svn.apache.org/r1638437 Log: Move log files to where the build slave can see them. Ignore files generated by the build slave. [in tools/buildbot/slaves/svn-x64-macosx] * .: Expand ignore patterns. * svncheck.sh: Move log files from the build dir to a subdirectory of the source dir. Modified: subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/ (props changed) subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svncheck.sh Propchange: subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/ ------------------------------------------------------------------------------ --- svn:ignore (original) +++ svn:ignore Tue Nov 11 21:38:33 2014 @@ -1,2 +1,5 @@ +buildbot.tac +info ramdisk svn-wc-* +twisted.* Modified: subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svncheck.sh URL: http://svn.apache.org/viewvc/subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svncheck.sh?rev=1638437&r1=1638436&r2=1638437&view=diff ============================================================================== --- subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svncheck.sh (original) +++ subversion/trunk/tools/buildbot/slaves/svn-x64-macosx/svncheck.sh Tue Nov 11 21:38:33 2014 @@ -35,11 +35,11 @@ run_tests() { # The tests.log file must exist test -f tests.log || exit 1 - mv tests.log tests-${ra}-${fs}.log + mv tests.log "${abssrc}/.test-logs/tests-${ra}-${fs}.log" # If a fails.log file exists, the tests failed. test -f fails.log && { - mv fails.log fails-${ra}-${fs}.log + mv fails.log "${abssrc}/.test-logs/fails-${ra}-${fs}.log" exit 1 } } @@ -70,6 +70,13 @@ while [ ! -z "$1" ]; do shift done +# Create a directory for the test log files +if [ -d "${abssrc}/.test-logs" ]; then + rm -fr "${abssrc}/.test-logs" +fi +mkdir "${abssrc}/.test-logs" + + ${check_local} && { ${check_fsfs} && run_tests local fsfs ${check_bdb} && run_tests local bdb