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/10/26 02:35:28 UTC

svn commit: r588445 - in /apr/apr/trunk/test: Makefile.in Makefile.win

Author: wrowe
Date: Thu Oct 25 17:35:26 2007
New Revision: 588445

URL: http://svn.apache.org/viewvc?rev=588445&view=rev
Log:
Explanations would be good

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

Modified: apr/apr/trunk/test/Makefile.in
URL: http://svn.apache.org/viewvc/apr/apr/trunk/test/Makefile.in?rev=588445&r1=588444&r2=588445&view=diff
==============================================================================
--- apr/apr/trunk/test/Makefile.in (original)
+++ apr/apr/trunk/test/Makefile.in Thu Oct 25 17:35:26 2007
@@ -11,6 +11,9 @@
 # OTHER_PROGRAMS
 #   programs such as sendfile, that have to be invoked in a special sequence
 #   or with special parameters
+# TESTALL_COMPONENTS
+#   programs such as globalmutexchild which the various TESTS will invoke
+#   to validate process creation, pipes, dso mechansims and so forth
 
 STDTEST_PORTABLE = \
 	testlockperf@EXEEXT@ \

Modified: apr/apr/trunk/test/Makefile.win
URL: http://svn.apache.org/viewvc/apr/apr/trunk/test/Makefile.win?rev=588445&r1=588444&r2=588445&view=diff
==============================================================================
--- apr/apr/trunk/test/Makefile.win (original)
+++ apr/apr/trunk/test/Makefile.win Thu Oct 25 17:35:26 2007
@@ -1,11 +1,24 @@
 # PROGRAMS includes all test programs built on this platform.
 # STDTEST_PORTABLE
 #   test programs invoked via standard user interface, run on all platforms
+# TESTS
+#   test modules invoked through the abts suite (./testall)
 # STDTEST_NONPORTABLE
 #   test programs invoked via standard user interface, not portable
 # OTHER_PROGRAMS
 #   programs such as sendfile, that have to be invoked in a special sequence
 #   or with special parameters
+# TESTALL_COMPONENTS
+#   programs such as globalmutexchild which the various TESTS will invoke
+#   to validate process creation, pipes, dso mechansims and so forth
+
+# Windows Specific;
+# MODEL
+#   dynamic or static - refers to which set of bindings are desired
+#   and controls which libraries (apr-1 or libapr-1) will be linked.
+# OUTDIR
+#   the library path of the libraries, and also the path within test/
+#   where all of the tests for that library will be built
 
 !IFNDEF MODEL
 MODEL=dynamic
@@ -242,7 +255,9 @@
 	    %COMSPEC% /c "cd %%d & $(MAKE) -f Makefile.win cleanall" \
 
 
+!IF "$(MODEL)" != "static"
 PATH=$(OUTDIR);..\$(OUTDIR);$(PATH)
+!ENDIF
 
 check: $(TESTALL_COMPONENTS) $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE)
 	@for %p in ($(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE)) do @( \