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 76359102D4 for ; Wed, 6 Nov 2013 11:43:56 +0000 (UTC) Received: (qmail 2869 invoked by uid 500); 6 Nov 2013 11:43:55 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 2753 invoked by uid 500); 6 Nov 2013 11:43:52 -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 2746 invoked by uid 99); 6 Nov 2013 11:43:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Nov 2013 11:43:51 +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; Wed, 06 Nov 2013 11:43:48 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 6A2E523888FE; Wed, 6 Nov 2013 11:43:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1539315 - in /subversion/trunk/tools/buildbot/slaves/win32-SharpSvn: svntest-bindings.cmd svntest-build-bindings.cmd svntest-build.cmd Date: Wed, 06 Nov 2013 11:43:27 -0000 To: commits@subversion.apache.org From: rhuijben@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131106114327.6A2E523888FE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rhuijben Date: Wed Nov 6 11:43:26 2013 New Revision: 1539315 URL: http://svn.apache.org/r1539315 Log: Sliksvn buildbot: Snapshot local changes Modified: subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-bindings.cmd subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-build-bindings.cmd subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-build.cmd Modified: subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-bindings.cmd URL: http://svn.apache.org/viewvc/subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-bindings.cmd?rev=1539315&r1=1539314&r2=1539315&view=diff ============================================================================== --- subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-bindings.cmd (original) +++ subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-bindings.cmd Wed Nov 6 11:43:26 2013 @@ -22,7 +22,6 @@ SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDE CALL ..\svn-config.cmd IF ERRORLEVEL 1 EXIT /B 1 -ECHO ON IF "%SVN_BRANCH%" LEQ "1.6.x" ( ECHO --- Building 1.6.x or older: Skipping bindings --- @@ -34,7 +33,7 @@ SET result=0 python win-tests.py -d -f fsfs --javahl "%TESTDIR%\tests" IF ERRORLEVEL 1 ( - echo [python reported error !ERRORLEVEL!] + echo [Test runner reported error !ERRORLEVEL!] SET result=1 ) @@ -43,7 +42,7 @@ if "%SVN_BRANCH%" GTR "1.9." ( python win-tests.py -r -f fsfs --swig=python "%TESTDIR%\tests" IF ERRORLEVEL 1 ( - echo [Python tests exited with error !ERRORLEVEL!] + echo [Test runner reported error !ERRORLEVEL!] SET result=1 ) @@ -61,17 +60,17 @@ if "%SVN_BRANCH%" GTR "1.9." ( python subversion\bindings\swig\python\tests\run_all.py IF ERRORLEVEL 1 ( - echo [Python tests exited with error !ERRORLEVEL!] + echo [Test runner reported error !ERRORLEVEL!] SET result=1 ) ) if "%SVN_BRANCH%" GTR "1.9." ( - python win-tests.py -d -f fsfs --swig=perl "%TESTDIR%\tests" +REM python win-tests.py -d -f fsfs --swig=perl "%TESTDIR%\tests" IF ERRORLEVEL 1 ( - echo [Perl tests exited with error !ERRORLEVEL!] + echo [Test runner reported error !ERRORLEVEL!] SET result=1 ) @@ -94,7 +93,7 @@ if "%SVN_BRANCH%" GTR "1.9." ( pushd subversion\bindings\swig\perl\native perl -MExtUtils::Command::MM -e "test_harness()" t\*.t IF ERRORLEVEL 1 ( - echo [Perl reported error !ERRORLEVEL!] + echo [Test runner reported error !ERRORLEVEL!] SET result=1 ) popd @@ -104,9 +103,10 @@ if "%SVN_BRANCH%" GTR "1.9." ( python win-tests.py -d -f fsfs --swig=ruby "%TESTDIR%\tests" IF ERRORLEVEL 1 ( - echo [Ruby tests reported error !ERRORLEVEL!] (not fatal) + echo [Test runner reported error !ERRORLEVEL!] REM SET result=1 ) + taskkill /im svnserve.exe /f ) exit /b %result% Modified: subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-build-bindings.cmd URL: http://svn.apache.org/viewvc/subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-build-bindings.cmd?rev=1539315&r1=1539314&r2=1539315&view=diff ============================================================================== --- subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-build-bindings.cmd (original) +++ subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-build-bindings.cmd Wed Nov 6 11:43:26 2013 @@ -42,7 +42,7 @@ if "%SVN_BRANCH%" GTR "1.9." ( msbuild subversion_vcnet.sln /m /p:Configuration=Debug /p:Platform=win32 %DEBUG_TARGETS% IF ERRORLEVEL 1 EXIT /B 1 -msbuild subversion_vcnet.sln /p:Configuration=Release /p:Platform=win32 %RELEASE_TARGETS% +msbuild subversion_vcnet.sln /m /p:Configuration=Release /p:Platform=win32 %RELEASE_TARGETS% IF ERRORLEVEL 1 EXIT /B 1 -EXIT /B 0 \ No newline at end of file +EXIT /B 0 Modified: subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-build.cmd URL: http://svn.apache.org/viewvc/subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-build.cmd?rev=1539315&r1=1539314&r2=1539315&view=diff ============================================================================== --- subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-build.cmd (original) +++ subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-build.cmd Wed Nov 6 11:43:26 2013 @@ -30,5 +30,7 @@ IF ERRORLEVEL 1 EXIT /B 1 POPD -msbuild subversion_vcnet.sln /p:Configuration=Debug /p:Platform=win32 /t:__ALL_TESTS__ +msbuild subversion_vcnet.sln /m /p:Configuration=Debug /p:Platform=win32 /t:__ALL_TESTS__ IF ERRORLEVEL 1 EXIT /B 1 + +EXIT /B 0