summaryrefslogtreecommitdiff
path: root/test/Makefile.nmake
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-01-21 14:53:47 -0500
committerNick Mathewson <nickm@torproject.org>2014-01-21 14:53:47 -0500
commit5c142a7ee9fbbc9502b71ef3bd034dd908f68089 (patch)
tree9a5311fa5ff83ba02feb972f4e360a77c52a9871 /test/Makefile.nmake
parentd03b5bf0bcbff1dc401fa20a4cf294613fa9b790 (diff)
parentb1b69ac7c1502ec73f5da17c82150186174bf5c9 (diff)
downloadlibevent-5c142a7ee9fbbc9502b71ef3bd034dd908f68089.tar.gz
Merge remote-tracking branch 'origin/pr/98'
Diffstat (limited to 'test/Makefile.nmake')
-rw-r--r--test/Makefile.nmake6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/Makefile.nmake b/test/Makefile.nmake
index 17aa2fb2..30c3eb79 100644
--- a/test/Makefile.nmake
+++ b/test/Makefile.nmake
@@ -22,13 +22,13 @@ REGRESS_OBJS=regress.obj regress_buffer.obj regress_http.obj regress_dns.obj \
regress_main.obj regress_minheap.obj regress_iocp.obj \
regress_thread.obj regress_finalize.obj $(SSL_OBJS)
-OTHER_OBJS=test-init.obj test-eof.obj test-weof.obj test-time.obj \
+OTHER_OBJS=test-init.obj test-eof.obj test-closed.obj test-weof.obj test-time.obj \
bench.obj bench_cascade.obj bench_http.obj bench_httpclient.obj \
test-changelist.obj \
print-winsock-errors.obj
PROGRAMS=regress.exe \
- test-init.exe test-eof.exe test-weof.exe test-time.exe \
+ test-init.exe test-eof.exe test-closed.exe test-weof.exe test-time.exe \
test-changelist.exe \
print-winsock-errors.exe
@@ -47,6 +47,8 @@ test-init.exe: test-init.obj
$(CC) $(CFLAGS) $(LIBS) test-init.obj
test-eof.exe: test-eof.obj
$(CC) $(CFLAGS) $(LIBS) test-eof.obj
+test-closed.exe: test-closed.obj
+ $(CC) $(CFLAGS) $(LIBS) test-closed.obj
test-changelist.exe: test-changelist.obj
$(CC) $(CFLAGS) $(LIBS) test-changelist.obj
test-weof.exe: test-weof.obj