summaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorrpj <rpj>1999-02-22 16:51:52 +0000
committerrpj <rpj>1999-02-22 16:51:52 +0000
commit346e0db637f3b0be52e1b7782cffa5ee0f2b09e8 (patch)
treee40318f83f82451a0a93afc6949cec7ef06e02f8 /tests/Makefile
parent2ef097640758653a0e9d63e90a4aac329cd86368 (diff)
1999-02-23 Ross Johnson <rpj@ise.canberra.edu.au>
* Template.c: Revamp. * condvar1.c: Add. * condvar2.c: Add. * Makefile: Add condvar1 condvar2 tests. * exit1.c, exit2.c, exit3.c: Cosmetic changes.
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 4fef3c3..12e9954 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -13,7 +13,7 @@ ECHO = @echo
#
CC = gcc
CFLAGS = -g -O2 -UNDEBUG -Wall -o $@ $^
-BUILD_DIR = ..\build
+BUILD_DIR = ..
INCLUDES = -I./include
LIBS = ./lib/libpthread32.a
@@ -35,7 +35,7 @@ DLL = pthread.dll
TESTS = count1 create1 equal1 exit1 exit2 exit3 \
join1 eyal1 mutex1 mutex2 mutex3 \
- once1 self1 self2 tsd1
+ once1 self1 self2 condvar1 condvar2 tsd1
PASSES = $(TESTS:%=%.pass)