Only in posixtestsuite/conformance/interfaces/pthread_spin_lock: 1-1 diff -U3 -r posixtestsuite.orig/conformance/interfaces/pthread_spin_lock/1-1.c posixtestsuite/conformance/interfaces/pthread_spin_lock/1-1.c --- posixtestsuite.orig/conformance/interfaces/pthread_spin_lock/1-1.c 2003-07-10 02:19:34.000000000 +0100 +++ posixtestsuite/conformance/interfaces/pthread_spin_lock/1-1.c 2006-07-05 15:38:27.000000000 +0100 @@ -39,7 +39,8 @@ static void sig_handler() { /* Just return */ - pthread_exit(0); + /* pthread_exit(0); */ + exit(0); return; } diff -U3 -r posixtestsuite.orig/LDFLAGS posixtestsuite/LDFLAGS --- posixtestsuite.orig/LDFLAGS 2005-06-03 02:32:42.000000000 +0100 +++ posixtestsuite/LDFLAGS 2006-07-05 13:03:09.000000000 +0100 @@ -8,7 +8,7 @@ #-lpthread -D_GNU_SOURCE # #Recommended flags: -#-D_XOPEN_SOURCE=600 -lpthread -lrt -lm +-D_XOPEN_SOURCE=600 -lpthread -lrt -lm # # For use with Linux, you may try the following flags to # allow for the NPTL-specific compilation (used in some test cases) diff -U3 -r posixtestsuite.orig/locate-test posixtestsuite/locate-test --- posixtestsuite.orig/locate-test 2005-03-14 13:53:50.000000000 +0000 +++ posixtestsuite/locate-test 2006-07-05 13:16:52.000000000 +0100 @@ -60,19 +60,19 @@ shift; ;; "--fmake") - find functional/ -type f -maxdepth 2 -mindepth 2 -name "Makefile" -exec dirname '{}' ';' + find functional/ -maxdepth 2 -mindepth 2 -type f -name "Makefile" -exec dirname '{}' ';' exit 0; ;; "--frun") - find functional/ -type f -maxdepth 2 -mindepth 2 -name "run.sh" -exec dirname '{}' ';' + find functional/ -maxdepth 2 -mindepth 2 -type f -name "run.sh" -exec dirname '{}' ';' exit 0; ;; "--smake") - find stress/ -type f -maxdepth 2 -mindepth 2 -name "Makefile" -exec dirname '{}' ';' + find stress/ -maxdepth 2 -mindepth 2 -type f -name "Makefile" -exec dirname '{}' ';' exit 0; ;; "--srun") - find stress/ -type f -maxdepth 2 -mindepth 2 -name "run.sh" -exec dirname '{}' ';' + find stress/ -maxdepth 2 -mindepth 2 -type f -name "run.sh" -exec dirname '{}' ';' exit 0; ;; "--help") diff -U3 -r posixtestsuite.orig/Makefile posixtestsuite/Makefile --- posixtestsuite.orig/Makefile 2005-03-14 13:53:41.000000000 +0000 +++ posixtestsuite/Makefile 2006-07-05 16:28:57.000000000 +0100 @@ -19,7 +19,7 @@ # Added tests timeout from Sebastien Decugis (http://nptl.bullopensource.org) # Expiration delay is 120 seconds -TIMEOUT_VAL = 120 +TIMEOUT_VAL = 15 # The following value is the shell return value of a timedout application. # with the bash shell, the ret val of a killed application is 128 + signum # and under Linux, SIGALRM=14, so we have (Linux+bash) 142. @@ -99,7 +99,8 @@ %.run-test: %.test $(top_builddir)/t0 @COMPLOG=$(LOGFILE).$$$$; \ [ -f $< ] || exit 0; \ - $(TIMEOUT) $< > $$COMPLOG 2>&1; \ + echo "$(@:.run-test=): GRIND=$(GRIND)" | tee -a $(LOGFILE); \ + $(TIMEOUT) $(GRIND) $< > $$COMPLOG 2>&1; \ RESULT=$$?; \ if [ $$RESULT -eq 1 ]; \ then \ @@ -141,11 +142,12 @@ @echo Building timeout helper files; \ $(CC) -O2 -o $@ $< ; \ echo `$(top_builddir)/t0 0; echo $$?` > $(top_builddir)/t0.val - + %.run-test: %.sh $(top_builddir)/t0 @COMPLOG=$(LOGFILE).$$$$; \ + echo "$(@:.run-test=): GRIND=$(GRIND)" | tee -a $(LOGFILE); \ chmod +x $<; \ - $(TIMEOUT) $< > $$COMPLOG 2>&1; \ + $(TIMEOUT) $(GRIND) $< > $$COMPLOG 2>&1; \ RESULT=$$?; \ if [ $$RESULT -eq 0 ]; \ then \ diff -U3 -r posixtestsuite.orig/run_tests posixtestsuite/run_tests --- posixtestsuite.orig/run_tests 2004-12-16 09:56:18.000000000 +0000 +++ posixtestsuite/run_tests 2006-07-05 19:06:48.000000000 +0100 @@ -12,11 +12,14 @@ usage() { cat <