diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/Bmakefile | 3 | ||||
| -rw-r--r-- | tests/ChangeLog | 5 | ||||
| -rw-r--r-- | tests/GNUmakefile | 5 | ||||
| -rw-r--r-- | tests/Makefile | 5 | ||||
| -rw-r--r-- | tests/Wmakefile | 3 | ||||
| -rw-r--r-- | tests/create3.c | 122 | 
6 files changed, 11 insertions, 132 deletions
diff --git a/tests/Bmakefile b/tests/Bmakefile index 992b240..d115d44 100644 --- a/tests/Bmakefile +++ b/tests/Bmakefile @@ -113,7 +113,7 @@ PASSES=   loadfree.pass \  	  priority1.pass priority2.pass inherit1.pass  \  	  spin1.pass  spin2.pass  spin3.pass  spin4.pass  \  	  exception1.pass  exception2.pass  exception3.pass  \ -	  cancel9.pass  create3.pass  stress1.pass +	  cancel9.pass  stress1.pass  BENCHRESULTS = \  	  benchtest1.bench benchtest2.bench benchtest3.bench benchtest4.bench benchtest5.bench @@ -262,7 +262,6 @@ context1.pass: cancel2.pass  count1.pass: join1.pass  create1.pass: mutex2.pass  create2.pass: create1.pass -create3.pass:  delay1.pass:  delay2.pass: delay1.pass  detach1.pass: join0.pass diff --git a/tests/ChangeLog b/tests/ChangeLog index 91bb8ef..784c329 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,8 @@ +2011-07-03  Ross Johnson <ross dot johnson at homemail dot com dot au> + +	* create3.c: Removed; testing a condition that is not in the library's +	scope and was more trouble than it was worth. +  2011-07-02  Ross Johnson <ross dot johnson at homemail dot com dot au>  	* spin3.c: Unlock the unlocked spinlock now returns success. diff --git a/tests/GNUmakefile b/tests/GNUmakefile index e773433..1744255 100644 --- a/tests/GNUmakefile +++ b/tests/GNUmakefile @@ -117,7 +117,7 @@ TESTS	= \  	  priority1 priority2 inherit1 \  	  spin1 spin2 spin3 spin4 \  	  exception1 exception2 exception3 \ -	  cancel9 create3 stress1 +	  cancel9 stress1  STRESSTESTS = \  	stress1 @@ -156,7 +156,7 @@ STATICTESTS = \  	  priority1 priority2 inherit1 \  	  spin1 spin2 spin3 spin4 \  	  exception1 exception2 exception3 \ -	  cancel9 create3 stress1 +	  cancel9 stress1  ALLTESTS = $(TESTS) $(BENCHTESTS) @@ -283,7 +283,6 @@ context1.pass: cancel2.pass  count1.pass: join1.pass  create1.pass: mutex2.pass  create2.pass: create1.pass -create3.pass:  delay1.pass: cancel2.pass  delay2.pass: delay1.pass  detach1.pass: join0.pass diff --git a/tests/Makefile b/tests/Makefile index 595c5b5..04a601c 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -120,7 +120,7 @@ REGULAR_PASSES = loadfree.pass \  	  priority1.pass priority2.pass inherit1.pass  \  	  spin1.pass  spin2.pass  spin3.pass  spin4.pass  \  	  exception1.pass  exception2.pass  exception3.pass  \ -	  cancel9.pass  create3.pass  stress1.pass +	  cancel9.pass  stress1.pass  BENCHRESULTS = \  	  benchtest1.bench benchtest2.bench benchtest3.bench benchtest4.bench benchtest5.bench @@ -166,7 +166,7 @@ STATICRESULTS = \  	  priority1.pass priority2.pass inherit1.pass  \  	  spin1.pass  spin2.pass  spin3.pass  spin4.pass  \  	  exception1.pass  exception2.pass  exception3.pass  \ -	  cancel9.pass  create3.pass  stress1.pass +	  cancel9.pass  stress1.pass  help:  	@ $(ECHO) Run one of the following command lines: @@ -353,7 +353,6 @@ context1.pass: cancel2.pass  count1.pass: join1.pass  create1.pass: mutex2.pass  create2.pass: create1.pass -create3.pass:  delay1.pass:  delay2.pass: delay1.pass  detach1.pass: join0.pass diff --git a/tests/Wmakefile b/tests/Wmakefile index 8d5d7a5..b199df4 100644 --- a/tests/Wmakefile +++ b/tests/Wmakefile @@ -116,7 +116,7 @@ PASSES	= sizes.pass  loadfree.pass &  	  spin1.pass  spin2.pass  spin3.pass  spin4.pass  &  	  barrier1.pass  barrier2.pass  barrier3.pass  barrier4.pass  barrier5.pass  &  	  exception1.pass  exception2.pass  exception3.pass  & -	  cancel9.pass  create3.pass  stress1.pass +	  cancel9.pass  stress1.pass  BENCHRESULTS = &  	  benchtest1.bench benchtest2.bench benchtest3.bench benchtest4.bench benchtest5.bench @@ -260,7 +260,6 @@ context1.pass: cancel2.pass  count1.pass: join1.pass  create1.pass: mutex2.pass  create2.pass: create1.pass -create3.pass:  delay1.pass:  delay2.pass: delay1.pass  detach1.pass: join0.pass diff --git a/tests/create3.c b/tests/create3.c deleted file mode 100644 index 98bd520..0000000 --- a/tests/create3.c +++ /dev/null @@ -1,122 +0,0 @@ -/* - * File: create3.c - * - * - * -------------------------------------------------------------------------- - * - *      Pthreads-win32 - POSIX Threads Library for Win32 - *      Copyright(C) 1998 John E. Bossom - *      Copyright(C) 1999,2003 Pthreads-win32 contributors - *  - *      Contact Email: rpj@callisto.canberra.edu.au - *  - *      The current list of contributors is contained - *      in the file CONTRIBUTORS included with the source - *      code distribution. The list can also be seen at the - *      following World Wide Web location: - *      http://sources.redhat.com/pthreads-win32/contributors.html - *  - *      This library is free software; you can redistribute it and/or - *      modify it under the terms of the GNU Lesser General Public - *      License as published by the Free Software Foundation; either - *      version 2 of the License, or (at your option) any later version. - *  - *      This library is distributed in the hope that it will be useful, - *      but WITHOUT ANY WARRANTY; without even the implied warranty of - *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU - *      Lesser General Public License for more details. - *  - *      You should have received a copy of the GNU Lesser General Public - *      License along with this library in the file COPYING.LIB; - *      if not, write to the Free Software Foundation, Inc., - *      59 Temple Place - Suite 330, Boston, MA 02111-1307, USA - * - * -------------------------------------------------------------------------- - * - * Test Synopsis: Test passing NULL as thread id arg to pthread_create. - * - * Test Method (Validation or Falsification): - * -  - * - * Requirements Tested: - * - - * - * Features Tested: - * -  - * - * Cases Tested: - * -  - * - * Description: - * -  - * - * Environment: - * -  - * - * Input: - * - None. - * - * Output: - * - File name, Line number, and failed expression on failure. - * - No output on success. - * - * Assumptions: - * -  - * - * Pass Criteria: - * - Process returns zero exit status. - * - * Fail Criteria: - * - Process returns non-zero exit status. - */ - - -#ifdef __GNUC__ -#include <stdlib.h> -#endif - -#include "test.h" - -/* - * Create NUMTHREADS threads in addition to the Main thread. - */ -enum { -  NUMTHREADS = 1 -}; - - -void * -threadFunc(void * arg) -{ -  return (void *) 0; -} - -int -main(int argc, char * argv[]) -{ -  int i; -  pthread_t mt; - -  if (argc <= 1) -    { -      int result; - -      printf("You should see an application memory write error message\n"); -      fflush(stdout); -      result = system("create3.exe die"); -      exit(0); -    } - -  assert((mt = pthread_self()).p != NULL); - -  for (i = 0; i < NUMTHREADS; i++) -    { -      assert(pthread_create(NULL, NULL, threadFunc, NULL) == 0); -    } - -  /* -   * Success. -   */ -  return 0; -} -  | 
