summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2007-10-13 00:16:55 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2007-10-13 00:16:55 +0000
commit474c472a607bab2b8dd522296e5bc3c36a53b453 (patch)
tree132edaaa320b1442f5c835af55731c89632da0bb /test
parent2e987b58a630f535504ad398051911fa52e4f68b (diff)
downloadlibapr-474c472a607bab2b8dd522296e5bc3c36a53b453.tar.gz
Add echod / sockperf tests.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@584346 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.win25
1 files changed, 24 insertions, 1 deletions
diff --git a/test/Makefile.win b/test/Makefile.win
index 8e1033e8f..4a377c738 100644
--- a/test/Makefile.win
+++ b/test/Makefile.win
@@ -48,7 +48,9 @@ STDTEST_PORTABLE = \
$(OUTDIR)\testmutexscope.exe
OTHER_PROGRAMS = \
- $(OUTDIR)\sendfile.exe
+ $(OUTDIR)\echod.exe \
+ $(OUTDIR)\sendfile.exe \
+ $(OUTDIR)\sockperf.exe
TESTALL_COMPONENTS = \
$(OUTDIR)\mod_test.dll \
@@ -128,6 +130,8 @@ SHLDFLAGS = /nologo /dll /debug /subsystem:windows /incremental:no
.c{$(INTDIR)}.obj::
$(CL) $(CFLAGS) -c $< -Fd$(INTDIR)\ $(INCLUDES)
+# STDTEST_PORTABLE;
+
$(OUTDIR)\testall.exe: $(ALL_TESTS) $(INTDIR)\abts.obj $(LOCAL_LIB)
$(LD) $(LDFLAGS) /out:"$@" $** $(LD_LIBS)
@if exist "$@.manifest" \
@@ -148,6 +152,25 @@ $(OUTDIR)\testmutexscope.exe: $(INTDIR)\testmutexscope.obj $(LOCAL_LIB)
@if exist "$@.manifest" \
mt.exe -manifest "$@.manifest" -outputresource:$@;1
+# OTHER_PROGRAMS;
+
+$(OUTDIR)\echod.exe: $(INTDIR)\echod.obj $(LOCAL_LIB)
+ $(LD) $(LDFLAGS) /out:"$@" $** $(LD_LIBS)
+ @if exist "$@.manifest" \
+ mt.exe -manifest "$@.manifest" -outputresource:$@;1
+
+$(OUTDIR)\sendfile.exe: $(INTDIR)\sendfile.obj $(LOCAL_LIB)
+ $(LD) $(LDFLAGS) /out:"$@" $** $(LD_LIBS)
+ @if exist "$@.manifest" \
+ mt.exe -manifest "$@.manifest" -outputresource:$@;1
+
+$(OUTDIR)\sockperf.exe: $(INTDIR)\sockperf.obj $(LOCAL_LIB)
+ $(LD) $(LDFLAGS) /out:"$@" $** $(LD_LIBS)
+ @if exist "$@.manifest" \
+ mt.exe -manifest "$@.manifest" -outputresource:$@;1
+
+# TESTALL_COMPONENTS;
+
$(OUTDIR)\globalmutexchild.exe: $(INTDIR)\globalmutexchild.obj $(LOCAL_LIB)
$(LD) $(LDFLAGS) /out:"$@" $** $(LD_LIBS)
@if exist "$@.manifest" \