You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2009/11/13 01:16:46 UTC

svn commit: r835655 - in /apr/apr-util/branches/1.3.x/test: Makefile.in Makefile.win

Author: wrowe
Date: Fri Nov 13 00:16:45 2009
New Revision: 835655

URL: http://svn.apache.org/viewvc?rev=835655&view=rev
Log:
Order tests to get to the suite last (with a satisfying All Tests Passed msg)

Modified:
    apr/apr-util/branches/1.3.x/test/Makefile.in
    apr/apr-util/branches/1.3.x/test/Makefile.win

Modified: apr/apr-util/branches/1.3.x/test/Makefile.in
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.3.x/test/Makefile.in?rev=835655&r1=835654&r2=835655&view=diff
==============================================================================
--- apr/apr-util/branches/1.3.x/test/Makefile.in (original)
+++ apr/apr-util/branches/1.3.x/test/Makefile.in Fri Nov 13 00:16:45 2009
@@ -12,7 +12,7 @@
 
 INCLUDES = @APRUTIL_PRIV_INCLUDES@ @APR_INCLUDES@ @APRUTIL_INCLUDES@
 
-STDTEST_PORTABLE = testall dbd
+STDTEST_PORTABLE = dbd testall
 
 TESTS = teststrmatch.lo testuri.lo testuuid.lo testbuckets.lo testpass.lo \
 	testmd4.lo testmd5.lo testldap.lo testdate.lo testdbm.lo testdbd.lo \
@@ -59,7 +59,7 @@
 check: $(TESTALL_COMPONENTS) $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE)
 	teststatus=0; \
 	progfailed=""; \
-	for prog in $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE); do \
+	for prog in $(STDTEST_NONPORTABLE) $(STDTEST_PORTABLE); do \
 	        if test "$$prog" = 'dbd'; then \
 			for driver in none @apu_dbd_tests@; do \
 				if test "$$driver" != 'none'; then \

Modified: apr/apr-util/branches/1.3.x/test/Makefile.win
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.3.x/test/Makefile.win?rev=835655&r1=835654&r2=835655&view=diff
==============================================================================
--- apr/apr-util/branches/1.3.x/test/Makefile.win (original)
+++ apr/apr-util/branches/1.3.x/test/Makefile.win Fri Nov 13 00:16:45 2009
@@ -157,11 +157,11 @@
 APR_ICONV1_PATH=$(API_PATH)\$(OUTDIR)\iconv
 
 check: $(PROGRAMS) $(OTHER_PROGRAMS)
+	echo Testing dbd sqlite2 && $(OUTDIR)\dbd.exe sqlite2 || echo Failed
+	echo Testing dbd sqlite3 && $(OUTDIR)\dbd.exe sqlite3 || echo Failed
 	@for %p in ($(PROGRAMS)) do @( \
 	    echo Testing %p && %p -v || echo %p failed \
 	)
-	echo Testing dbd sqlite2 && $(OUTDIR)\dbd.exe sqlite2 || echo Failed
-	echo Testing dbd sqlite3 && $(OUTDIR)\dbd.exe sqlite3 || echo Failed
 
 checkall: check