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:01:39 UTC

svn commit: r543632 - /apr/apr/trunk/test/Makefile.in

Author: wrowe
Date: Fri Jun  1 15:01:38 2007
New Revision: 543632

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

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

Modified:
    apr/apr/trunk/test/Makefile.in

Modified: apr/apr/trunk/test/Makefile.in
URL: http://svn.apache.org/viewvc/apr/apr/trunk/test/Makefile.in?view=diff&rev=543632&r1=543631&r2=543632
==============================================================================
--- apr/apr/trunk/test/Makefile.in (original)
+++ apr/apr/trunk/test/Makefile.in Fri Jun  1 15:01:38 2007
@@ -12,14 +12,15 @@
 
 STDTEST_PORTABLE = \
 	testlockperf@EXEEXT@ \
-	testshmproducer@EXEEXT@ \
-	testshmconsumer@EXEEXT@ \
 	testmutexscope@EXEEXT@ \
 	testall@EXEEXT@
 
-OTHER_PROGRAMS = sendfile@EXEEXT@ \
-                 echod@EXEEXT@ \
-                 sockperf@EXEEXT@
+OTHER_PROGRAMS = \
+        sendfile@EXEEXT@ \
+	testshmproducer@EXEEXT@ \
+	testshmconsumer@EXEEXT@ \
+        echod@EXEEXT@ \
+        sockperf@EXEEXT@
 
 PROGRAMS = $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE) $(OTHER_PROGRAMS)