diff options
Diffstat (limited to 'pthreads/tests/Bmakefile')
-rw-r--r-- | pthreads/tests/Bmakefile | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/pthreads/tests/Bmakefile b/pthreads/tests/Bmakefile index df2ac1b1b..f4bdd9cc5 100644 --- a/pthreads/tests/Bmakefile +++ b/pthreads/tests/Bmakefile @@ -5,7 +5,7 @@ # # Pthreads-win32 - POSIX Threads Library for Win32 # Copyright(C) 1998 John E. Bossom -# Copyright(C) 1999,2005 Pthreads-win32 contributors +# Copyright(C) 1999,2012 Pthreads-win32 contributors # # Contact Email: rpj@callisto.canberra.edu.au # @@ -64,7 +64,7 @@ BCXFLAGS = -D__CLEANUP_C CPLIB = $(BCLIB) CPDLL = $(BCDLL) -CFLAGS= -q $(OPTIM) /D_WIN32_WINNT=0x400 -w -tWC -tWM -4 -w-aus -w-asc -w-par +CFLAGS= -q $(OPTIM) -w -tWC -tWM -4 -w-aus -w-asc -w-par LFLAGS= INCLUDES=-I. BUILD_DIR=.. @@ -76,7 +76,7 @@ EHFLAGS = # If a test case returns a non-zero exit code to the shell, make will # stop. -PASSES= loadfree.pass \ +PASSES= \ errno1.pass \ self1.pass mutex5.pass \ mutex1.pass mutex1n.pass mutex1e.pass mutex1r.pass \ @@ -87,7 +87,7 @@ PASSES= loadfree.pass \ exit1.pass create1.pass create2.pass reuse1.pass reuse2.pass equal1.pass \ sequence1.pass kill1.pass valid1.pass valid2.pass \ exit2.pass exit3.pass exit4.pass exit5.pass \ - join0.pass join1.pass detach1.pass join2.pass join3.pass \ + join0.pass join1.pass detach1.pass join2.pass join3.pass join4.pass \ mutex4.pass mutex6.pass mutex6n.pass mutex6e.pass mutex6r.pass \ mutex6s.pass mutex6es.pass mutex6rs.pass \ mutex7.pass mutex7n.pass mutex7e.pass mutex7r.pass \ @@ -112,8 +112,10 @@ PASSES= loadfree.pass \ cleanup0.pass cleanup1.pass cleanup2.pass cleanup3.pass \ priority1.pass priority2.pass inherit1.pass \ spin1.pass spin2.pass spin3.pass spin4.pass \ - exception1.pass exception2.pass exception3.pass \ - cancel9.pass stress1.pass + exception1.pass exception2.pass exception3_0.pass exception3.pass \ + cancel9.pass \ + affinity1.pass affinity2.pass affinity3.pass affinity4.pass affinity5.pass \ + stress1.pass BENCHRESULTS = \ benchtest1.bench benchtest2.bench benchtest3.bench benchtest4.bench benchtest5.bench @@ -214,6 +216,7 @@ clean: - $(RM) *.o - $(RM) *.asm - $(RM) *.exe + - $(RM) *.manifest - $(RM) *.pass - $(RM) *.bench - $(RM) *.log @@ -223,6 +226,12 @@ benchtest2.bench: benchtest3.bench: benchtest4.bench: benchtest5.bench: + +affinity1.pass: +affinity2.pass: affinity1.pass +affinity3.pass: affinity2.pass +affinity4.pass: affinity3.pass +affinity5.pass: affinity4.pass barrier1.pass: semaphore4.pass barrier2.pass: barrier1.pass barrier3.pass: barrier2.pass @@ -269,7 +278,8 @@ equal1.pass: create1.pass errno1.pass: mutex3.pass exception1.pass: cancel4.pass exception2.pass: exception1.pass -exception3.pass: exception2.pass +exception3_0.pass: exception2.pass +exception3.pass: exception3_0.pass exit1.pass: exit2.pass: create1.pass exit3.pass: create1.pass @@ -281,8 +291,8 @@ join0.pass: create1.pass join1.pass: create1.pass join2.pass: create1.pass join3.pass: join2.pass +join4.pass: join3.pass kill1.pass: -loadfree.pass: pthread.dll mutex1.pass: self1.pass mutex1n.pass: mutex1.pass mutex1e.pass: mutex1.pass |