Author: rhuijben
Date: Fri Jun 26 09:35:52 2020
New Revision: 1879222

URL: http://svn.apache.org/viewvc?rev=1879222&view=rev
Log:
* buildbot/slaves/win32-SharpSvn/svntest-test.cmd
  Call the default python interpreter on the tests.

Modified:
    subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-test.cmd

Modified: subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-test.cmd
URL: 
http://svn.apache.org/viewvc/subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-test.cmd?rev=1879222&r1=1879221&r2=1879222&view=diff
==============================================================================
--- subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-test.cmd 
(original)
+++ subversion/trunk/tools/buildbot/slaves/win32-SharpSvn/svntest-test.cmd Fri 
Jun 26 09:35:52 2020
@@ -75,19 +75,19 @@ IF "%SVN_BRANCH%" LSS "1.9." (
 
 IF "%LOCAL%+%FSFS%" == "1+1" (
   echo win-tests.py -c %PARALLEL% %MODE% -f fsfs %ARGS% "%TESTDIR%\tests"
-  win-tests.py -c %PARALLEL% %MODE% -f fsfs %ARGS% "%TESTDIR%\tests"
+  python win-tests.py -c %PARALLEL% %MODE% -f fsfs %ARGS% "%TESTDIR%\tests"
   IF ERRORLEVEL 1 SET RC=1
 )
 
 IF "%SVN%+%FSFS%" == "1+1" (
   echo win-tests.py -c %PARALLEL% %MODE% -f fsfs -u svn://127.0.0.1 %ARGS% 
"%TESTDIR%\tests"
-  win-tests.py -c %PARALLEL% %MODE% -f fsfs -u svn://127.0.0.1 %ARGS% 
"%TESTDIR%\tests"
+  python win-tests.py -c %PARALLEL% %MODE% -f fsfs -u svn://127.0.0.1 %ARGS% 
"%TESTDIR%\tests"
   IF ERRORLEVEL 1 SET RC=1
 )
 
 IF "%DAV%+%FSFS%" == "1+1" (
   echo win-tests.py -c %PARALLEL% %MODE% -f fsfs --httpd-no-log --httpd-dir 
"%CD%\..\deps\release\httpd" --httpd-port %TESTPORT% -u 
http://127.0.0.1:%TESTPORT% %ARGS% "%TESTDIR%\tests"
-  win-tests.py -c %PARALLEL% %MODE% -f fsfs --httpd-no-log --httpd-dir 
"%CD%\..\deps\release\httpd" --httpd-port %TESTPORT% -u 
http://127.0.0.1:%TESTPORT% %ARGS% "%TESTDIR%\tests"
+  python win-tests.py -c %PARALLEL% %MODE% -f fsfs --httpd-no-log --httpd-dir 
"%CD%\..\deps\release\httpd" --httpd-port %TESTPORT% -u 
http://127.0.0.1:%TESTPORT% %ARGS% "%TESTDIR%\tests"
   IF ERRORLEVEL 1 SET RC=1
 )
 


Reply via email to