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/17 11:16:19 UTC

svn commit: r585425 - /apr/apr-util/trunk/test/Makefile.win

Author: wrowe
Date: Wed Oct 17 02:16:19 2007
New Revision: 585425

URL: http://svn.apache.org/viewvc?rev=585425&view=rev
Log:
Minimal binaries to run the check

Modified:
    apr/apr-util/trunk/test/Makefile.win

Modified: apr/apr-util/trunk/test/Makefile.win
URL: http://svn.apache.org/viewvc/apr/apr-util/trunk/test/Makefile.win?rev=585425&r1=585424&r2=585425&view=diff
==============================================================================
--- apr/apr-util/trunk/test/Makefile.win (original)
+++ apr/apr-util/trunk/test/Makefile.win Wed Oct 17 02:16:19 2007
@@ -57,12 +57,8 @@
 
 PROGRAMS = $(OUTDIR)\testall.exe
 
-# testdbm needs args, belongs here
-# testreslist is broken
-# testxml is too damned noisy
-# testqueue is too damned noisy
-# dbd I just don't grok, probably belongs here though
-OTHER_PROGRAMS = $(OUTDIR)\dbd.exe
+OTHER_PROGRAMS = $(OUTDIR)\dbd.exe $(OUTDIR)\testssl.exe \
+	$(OUTDIR)\echod.exe $(OUTDIR)\sockperf.exe
 
 # bring in rules.mk for standard functionality
 ALL: $(PROGRAMS)
@@ -115,11 +111,28 @@
 	@if exist "$@.manifest" \
 	    mt.exe -manifest "$@.manifest" -outputresource:$@;1
 
+# OTHER_PROGRAMS;
+
 $(OUTDIR)\dbd.exe: $(INTDIR)\dbd.obj $(PROGRAM_DEPENDENCIES)
 	$(LD) $(LDFLAGS) /out:"$@" $** $(LD_LIBS)
 	@if exist "$@.manifest" \
 	    mt.exe -manifest "$@.manifest" -outputresource:$@;1
 
+$(OUTDIR)\testssl.exe: $(INTDIR)\testssl.obj $(PROGRAM_DEPENDENCIES)
+	$(LD) $(LDFLAGS) /out:"$@" $** $(LD_LIBS)
+	@if exist "$@.manifest" \
+	    mt.exe -manifest "$@.manifest" -outputresource:$@;1
+
+$(OUTDIR)\echod.exe: $(INTDIR)\echod.obj $(PROGRAM_DEPENDENCIES)
+	$(LD) $(LDFLAGS) /out:"$@" $** $(LD_LIBS)
+	@if exist "$@.manifest" \
+	    mt.exe -manifest "$@.manifest" -outputresource:$@;1
+
+$(OUTDIR)\sockperf.exe: $(INTDIR)\sockperf.obj $(PROGRAM_DEPENDENCIES)
+	$(LD) $(LDFLAGS) /out:"$@" $** $(LD_LIBS)
+	@if exist "$@.manifest" \
+	    mt.exe -manifest "$@.manifest" -outputresource:$@;1
+
 
 cleandata:
 	@for %f in ($(CLEAN_DATA)) do @if EXIST %f del /f %f
@@ -140,7 +153,7 @@
 PATH=$(OUTDIR);..\$(OUTDIR);$(API_PATH)\$(OUTDIR);$(APR_PATH)\$(OUTDIR);$(PATH)
 APR_ICONV1_PATH=$(API_PATH)\$(OUTDIR)\iconv
 
-check: $(TESTALL_COMPONENTS) $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE)
+check: $(PROGRAMS)
 	@for %p in ($(PROGRAMS)) do @( \
 	    echo Testing %p && %p || echo %p failed \
 	)