diff options
author | rpj <rpj> | 2002-01-13 02:29:40 +0000 |
---|---|---|
committer | rpj <rpj> | 2002-01-13 02:29:40 +0000 |
commit | 30a1e9738593302fa26e0a668f517bc7f5800190 (patch) | |
tree | b7379d358ab465e2c2c57864699c91b9055fc9fd /Nmakefile.tests | |
parent | 0fee04f5eb2d9c1c484281afbc2b24278567a179 (diff) |
* attr.c (pthread_attr_setscope): Fix struct pointer
indirection error introduced 2002-01-04.
(pthread_attr_getscope): Likewise.
* pthread.dsp (SOURCE): Add missing source files.
./tests/:
* exception3.c (main): Shorten wait time.
* mutex7.c: New test.
* mutex7n.c: New test.
* mutex7e.c: New test.
* mutex7r.c: New test.
* mutex6.c: Modified to avoid leaving the locked mutex
around on exit.
Diffstat (limited to 'Nmakefile.tests')
-rw-r--r-- | Nmakefile.tests | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Nmakefile.tests b/Nmakefile.tests index a99b1db..2427bf9 100644 --- a/Nmakefile.tests +++ b/Nmakefile.tests @@ -42,6 +42,10 @@ mutex6:: mutex6.c mutex6e:: mutex6e.c
mutex6n:: mutex6n.c
mutex6r:: mutex6r.c
+mutex7:: mutex7.c
+mutex7e:: mutex7e.c
+mutex7n:: mutex7n.c
+mutex7r:: mutex7r.c
equal1:: equal1.c
exit2:: exit2.c
exit3:: exit3.c
@@ -98,6 +102,7 @@ benchtest4:: benchtest4.c benchtest5:: benchtest5.c
loadfree: :test:
+mutex5 :test: loadfree
mutex1 :test: loadfree
mutex2 :test: loadfree
exit1 :test: loadfree
@@ -110,6 +115,14 @@ cancel1 :test: create1 cancel2 :test: cancel1
mutex3 :test: create1
mutex4 :test: mutex3
+mutex6 :test: mutex4
+mutex6n :test: mutex4
+mutex6e :test: mutex4
+mutex6r :test: mutex4
+mutex7 :test: mutex6
+mutex7n :test: mutex6n
+mutex7e :test: mutex6e
+mutex7r :test: mutex6r
equal1 :test: create1
exit2 :test: create1
exit3 :test: create1
|