You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2010/11/24 22:52:54 UTC

svn commit: r1038843 - /subversion/trunk/tools/dev/unix-build/Makefile.svn

Author: stsp
Date: Wed Nov 24 21:52:53 2010
New Revision: 1038843

URL: http://svn.apache.org/viewvc?rev=1038843&view=rev
Log:
* tools/dev/unix-build/Makefile.svn: Fix tests.log/fails.log existence test.

Modified:
    subversion/trunk/tools/dev/unix-build/Makefile.svn

Modified: subversion/trunk/tools/dev/unix-build/Makefile.svn
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/unix-build/Makefile.svn?rev=1038843&r1=1038842&r2=1038843&view=diff
==============================================================================
--- subversion/trunk/tools/dev/unix-build/Makefile.svn (original)
+++ subversion/trunk/tools/dev/unix-build/Makefile.svn Wed Nov 24 21:52:53 2010
@@ -1024,13 +1024,13 @@ svn-check-neon: httpd-conf $(SVN_OBJDIR)
 	       BASE_URL=http://localhost:$(HTTPD_CHECK_PORT) HTTP_LIBRARY=neon \
 	       $(PARALLEL)
 	-$(foreach log, $(TEST_LOGS), \
-		test -f $(log) && cp -f $(svn_builddir)/$(log) \
+		test -f $(svn_builddir)/$(log) && cp -f $(svn_builddir)/$(log) \
 			$(svn_builddir)/$(log).$@-fsfs;)
 	-cd $(svn_builddir) && make check FS_TYPE=bdb \
 	       BASE_URL=http://localhost:$(HTTPD_CHECK_PORT) HTTP_LIBRARY=neon \
 	       $(PARALLEL)
 	-$(foreach log, $(TEST_LOGS), \
-		test -f $(log) && cp -f $(svn_builddir)/$(log) \
+		test -f $(svn_builddir)/$(log) && cp -f $(svn_builddir)/$(log) \
 			$(svn_builddir)/$(log).$@-bdb;)
 	$(HTTPD_STOP_CMD)
 
@@ -1040,24 +1040,24 @@ svn-check-serf: httpd-conf $(SVN_OBJDIR)
 	       BASE_URL=http://localhost:$(HTTPD_CHECK_PORT) HTTP_LIBRARY=serf \
 	       $(PARALLEL)
 	-$(foreach log, $(TEST_LOGS), \
-		test -f $(log) && cp -f $(svn_builddir)/$(log) \
+		test -f $(svn_builddir)/$(log) && cp -f $(svn_builddir)/$(log) \
 			$(svn_builddir)/$(log).$@-fsfs;)
 	-cd $(svn_builddir) && make check FS_TYPE=bdb \
 	       BASE_URL=http://localhost:$(HTTPD_CHECK_PORT) HTTP_LIBRARY=serf \
 	       $(PARALLEL)
 	-$(foreach log, $(TEST_LOGS), \
-		test -f $(log) && cp -f $(svn_builddir)/$(log) \
+		test -f $(svn_builddir)/$(log) && cp -f $(svn_builddir)/$(log) \
 			$(svn_builddir)/$(log).$@-bdb;)
 	$(HTTPD_STOP_CMD)
 
 svn-check-local:
 	-cd $(svn_builddir) && make check FS_TYPE=fsfs $(PARALLEL)
 	-$(foreach log, $(TEST_LOGS), \
-		test -f $(log) && cp -f $(svn_builddir)/$(log) \
+		test -f $(svn_builddir)/$(log) && cp -f $(svn_builddir)/$(log) \
 			$(svn_builddir)/$(log).$@-fsfs;)
 	-cd $(svn_builddir) && make check FS_TYPE=bdb $(PARALLEL)
 	-$(foreach log, $(TEST_LOGS), \
-		test -f $(log) && cp -f $(svn_builddir)/$(log) \
+		test -f $(svn_builddir)/$(log) && cp -f $(svn_builddir)/$(log) \
 			$(svn_builddir)/$(log).$@-bdb;)
 
 svn-check-svn:
@@ -1065,12 +1065,12 @@ svn-check-svn:
 	-cd $(svn_builddir) && make check FS_TYPE=fsfs \
 		BASE_URL=svn://127.0.0.1 $(PARALLEL)
 	-$(foreach log, $(TEST_LOGS), \
-		test -f $(log) && cp -f $(svn_builddir)/$(log) \
+		test -f $(svn_builddir)/$(log) && cp -f $(svn_builddir)/$(log) \
 			$(svn_builddir)/$(log).$@-fsfs;)
 	-cd $(svn_builddir) && make check FS_TYPE=bdb \
 		BASE_URL=svn://127.0.0.1 $(PARALLEL)
 	-$(foreach log, $(TEST_LOGS), \
-		test -f $(log) && cp -f $(svn_builddir)/$(log) \
+		test -f $(svn_builddir)/$(log) && cp -f $(svn_builddir)/$(log) \
 			$(svn_builddir)/$(log).$@-bdb;)
 	$(SVNSERVE_STOP_CMD)