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 2007/06/02 00:02:14 UTC

svn commit: r543633 - /apr/apr/branches/1.2.x/test/Makefile.in

Author: wrowe
Date: Fri Jun  1 15:02:13 2007
New Revision: 543633

URL: http://svn.apache.org/viewvc?view=rev&rev=543633
Log:
Don't invoke testshm* binaries from make test

PR: 32972
Submitted by: Kurt Miller <kurt intricatesoftware.com>
Reviewed by: wrowe, pquerna
Backport: 543632

Modified:
    apr/apr/branches/1.2.x/test/Makefile.in

Modified: apr/apr/branches/1.2.x/test/Makefile.in
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.2.x/test/Makefile.in?view=diff&rev=543633&r1=543632&r2=543633
==============================================================================
--- apr/apr/branches/1.2.x/test/Makefile.in (original)
+++ apr/apr/branches/1.2.x/test/Makefile.in Fri Jun  1 15:02:13 2007
@@ -12,12 +12,13 @@
 
 STDTEST_PORTABLE = \
 	testlockperf@EXEEXT@ \
-	testshmproducer@EXEEXT@ \
-	testshmconsumer@EXEEXT@ \
 	testmutexscope@EXEEXT@ \
 	testall@EXEEXT@
 
-OTHER_PROGRAMS = sendfile@EXEEXT@ 
+OTHER_PROGRAMS = \
+        sendfile@EXEEXT@ \
+	testshmproducer@EXEEXT@ \
+	testshmconsumer@EXEEXT@
 
 PROGRAMS = $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE) $(OTHER_PROGRAMS)