diff options
author | rpj <rpj> | 2001-07-05 15:19:22 +0000 |
---|---|---|
committer | rpj <rpj> | 2001-07-05 15:19:22 +0000 |
commit | ec27b9c8303540de6b5a8ebefee114f3cdd436f0 (patch) | |
tree | 965ddfd011b9deb0091d2930fd55ce250c54ed58 /tests/GNUmakefile | |
parent | 99e8ecc5759668fd3af379eaddd70b4ae50ecd7f (diff) |
* barrier.c: Remove static initialisation - irrelevent
for this object.
* pthread.h (PTHREAD_BARRIER_INITIALIZER): Removed.
* rwlock.c (pthread_rwlock_wrlock): This routine is
not a cancelation point - disable deferred
cancelation around call to pthread_cond_wait().
tests/ChangeLog:
* spin1.c: New; testing spinlocks.
* spin2.c: New; testing spinlocks.
* spin3.c: New; testing spinlocks.
* spin4.c: New; testing spinlocks.
* barrier1.c: New; testing barriers.
* barrier2.c: New; testing barriers.
* barrier3.c: New; testing barriers.
* barrier4.c: New; testing barriers.
* GNUmakefile: Add new tests.
* Makefile: Add new tests.
Diffstat (limited to 'tests/GNUmakefile')
-rw-r--r-- | tests/GNUmakefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/GNUmakefile b/tests/GNUmakefile index b952eed..f005664 100644 --- a/tests/GNUmakefile +++ b/tests/GNUmakefile @@ -48,6 +48,8 @@ TESTS = loadfree \ context1 cancel3 cancel4 cancel5 \ cleanup0 cleanup1 cleanup2 cleanup3 \ priority1 priority2 inherit1 \ + spin1 spin2 spin3 spin4 \ + barrier1 barrier2 barrier3 barrier4 \ exception1 exception2 exception3 BENCHTESTS = \ @@ -89,6 +91,11 @@ benchtest1.bench: benchtest2.bench: benchtest3.bench: benchtest4.bench: + +barrier1.pass: +barrier2.pass: barrier1.pass +barrier3.pass: barrier2.pass +barrier4.pass: barrier3.pass cancel1.pass: create1.pass cancel2.pass: cancel1.pass cancel2_1.pass: cancel2.pass @@ -149,6 +156,10 @@ rwlock6.pass: rwlock5.pass rwlock7.pass: rwlock6.pass self1.pass: self2.pass: create1.pass +spin1.pass: +spin2.pass: spin1.pass +spin3.pass: spin2.pass +spin4.pass: spin3.pass tsd1.pass: join1.pass #%.pass: %.exe $(HDR) |