OSDN Git Service

* gcc.dg/pthread-init-1.c, pthread-init-2.c,
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 29 Sep 2006 19:33:50 +0000 (19:33 +0000)
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 29 Sep 2006 19:33:50 +0000 (19:33 +0000)
pthread-init-common.h: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@117314 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pthread-init-1.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/pthread-init-2.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/pthread-init-common.h [new file with mode: 0644]

index 8867570..be1c1ea 100644 (file)
@@ -1,3 +1,8 @@
+2006-09-29  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * gcc.dg/pthread-init-1.c, pthread-init-2.c,
+       pthread-init-common.h: New.
+
 2006-09-29  Steven G. Kargl  <kargl@gcc.gnu.org>
 
        * gfortran.dg/nearest_1.f90: Add -ffloat-store to defeat extra
diff --git a/gcc/testsuite/gcc.dg/pthread-init-1.c b/gcc/testsuite/gcc.dg/pthread-init-1.c
new file mode 100644 (file)
index 0000000..9cf4fa3
--- /dev/null
@@ -0,0 +1,11 @@
+/* Ensure we get clean warning results when using the pthread
+ * initialization macros.
+ *
+ * Origin: Kaveh Ghazi (ghazi@caip.rutgers.edu) 9/27/2006.
+ */
+
+/* { dg-do compile } */
+/* { dg-options "-Wextra -Wall" } */
+
+#include "pthread-init-common.h"
+
diff --git a/gcc/testsuite/gcc.dg/pthread-init-2.c b/gcc/testsuite/gcc.dg/pthread-init-2.c
new file mode 100644 (file)
index 0000000..5da84ba
--- /dev/null
@@ -0,0 +1,11 @@
+/* Various Solaris versions have been known to have problems with the
+ * pthread initialization macros when __STDC__ is defined.
+ *
+ * Origin: Kaveh Ghazi (ghazi@caip.rutgers.edu) 9/27/2006.
+ */
+
+/* { dg-do compile } */
+/* { dg-options "-Wextra -Wall -ansi" } */
+
+#include "pthread-init-common.h"
+
diff --git a/gcc/testsuite/gcc.dg/pthread-init-common.h b/gcc/testsuite/gcc.dg/pthread-init-common.h
new file mode 100644 (file)
index 0000000..e9f96ce
--- /dev/null
@@ -0,0 +1,24 @@
+/* 
+ * Common code for the pthread-init-*.c tests.
+ *
+ * Origin: Kaveh Ghazi (ghazi@caip.rutgers.edu) 9/27/2006.
+ */
+
+#include <pthread.h>
+#define UNUSED __attribute__ ((__unused__))
+
+void foo(void)
+{
+#ifdef PTHREAD_MUTEX_INITIALIZER
+  pthread_mutex_t pmutex UNUSED = PTHREAD_MUTEX_INITIALIZER;
+#endif
+#ifdef PTHREAD_COND_INITIALIZER
+  pthread_cond_t pcond UNUSED = PTHREAD_COND_INITIALIZER;
+#endif
+#ifdef PTHREAD_RWLOCK_INITIALIZER
+  pthread_rwlock_t prwlock UNUSED = PTHREAD_RWLOCK_INITIALIZER;
+#endif
+#ifdef PTHREAD_ONCE_INIT
+  pthread_once_t ponce UNUSED = PTHREAD_ONCE_INIT;
+#endif
+}