diff options
author | rpj <rpj> | 1999-01-16 17:34:53 +0000 |
---|---|---|
committer | rpj <rpj> | 1999-01-16 17:34:53 +0000 |
commit | 9b75468a10363ada39a17563cca6bcd819ec8fcd (patch) | |
tree | ea082f51c28cb761f109f9a407e54c5c4fe41bd2 /tests | |
parent | 677bfb0881c56dad767a07b31ac543db284e16c6 (diff) |
Sun Jan 17 12:01:26 1999 Ross Johnson <rpj@ixobrychus.canberra.edu.au>snapshot-1999-01-17
* private.c (_pthread_sem_timedwait): Move from semaphore.c.
* semaphore.c : Remove redundant #includes.
(_pthread_sem_timedwait): Move to private.c.
(sem_wait): Add missing abstime arg to pthreadCancelableWait() call.
1999-01-17 Ross Johnson <rpj@ise.canberra.edu.au>
* runtest: New script to build and run a test in the tests directory.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ChangeLog | 4 | ||||
-rw-r--r-- | tests/runtest.bat | 9 |
2 files changed, 13 insertions, 0 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog index 54cccef..c5ac1ce 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,7 @@ +1999-01-17 Ross Johnson <rpj@ise.canberra.edu.au> + + * runtest: New script to build and run a test in the tests directory. + Wed Dec 30 11:22:44 1998 Ross Johnson <rpj@ixobrychus.canberra.edu.au> * tsd1.c: Re-written. See comments at start of file. diff --git a/tests/runtest.bat b/tests/runtest.bat new file mode 100644 index 0000000..fd68008 --- /dev/null +++ b/tests/runtest.bat @@ -0,0 +1,9 @@ +cd tmp +cl /W3 /MT /nologo /Yd /Zi -I..\.. -D_WIN32_WINNT=0x400 -DSTDCALL=_stdcall -c ..\%1.c +cl /Feaout.exe /Zi %1.obj ..\..\pthread.lib +del %1.obj +copy ..\..\pthread.dll . +aout.exe +del aout.exe +del pthread.dll +cd .. |