aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/doc/sourcebuild.texi3
-rw-r--r--gcc/testsuite/gcc.dg/pr116906-1.c3
-rw-r--r--gcc/testsuite/gcc.dg/pr116906-2.c3
-rw-r--r--gcc/testsuite/gcc.dg/pr78185.c3
-rw-r--r--gcc/testsuite/gcc.dg/vect/pr101145inf.c1
-rw-r--r--gcc/testsuite/gcc.dg/vect/pr101145inf_1.c1
-rw-r--r--gcc/testsuite/lib/target-supports.exp27
7 files changed, 38 insertions, 3 deletions
diff --git a/gcc/doc/sourcebuild.texi b/gcc/doc/sourcebuild.texi
index b5c1b23..98ede70 100644
--- a/gcc/doc/sourcebuild.texi
+++ b/gcc/doc/sourcebuild.texi
@@ -2808,6 +2808,9 @@ both scalar and vector modes.
@subsubsection Environment attributes
@table @code
+@item alarm
+Target supports @code{alarm}.
+
@item c
The language for the compiler under test is C.
diff --git a/gcc/testsuite/gcc.dg/pr116906-1.c b/gcc/testsuite/gcc.dg/pr116906-1.c
index 27b1fda..7187507 100644
--- a/gcc/testsuite/gcc.dg/pr116906-1.c
+++ b/gcc/testsuite/gcc.dg/pr116906-1.c
@@ -1,4 +1,5 @@
-/* { dg-do run { target *-*-linux* *-*-gnu* *-*-uclinux* } } */
+/* { dg-require-effective-target alarm } */
+/* { dg-require-effective-target signal } */
/* { dg-options "-O2" } */
#include <stdint.h>
diff --git a/gcc/testsuite/gcc.dg/pr116906-2.c b/gcc/testsuite/gcc.dg/pr116906-2.c
index 3478771..41a352b 100644
--- a/gcc/testsuite/gcc.dg/pr116906-2.c
+++ b/gcc/testsuite/gcc.dg/pr116906-2.c
@@ -1,4 +1,5 @@
-/* { dg-do run { target *-*-linux* *-*-gnu* *-*-uclinux* } } */
+/* { dg-require-effective-target alarm } */
+/* { dg-require-effective-target signal } */
/* { dg-options "-O2 -fno-tree-ch" } */
#include <unistd.h>
diff --git a/gcc/testsuite/gcc.dg/pr78185.c b/gcc/testsuite/gcc.dg/pr78185.c
index d7781b2..ada8b1b 100644
--- a/gcc/testsuite/gcc.dg/pr78185.c
+++ b/gcc/testsuite/gcc.dg/pr78185.c
@@ -1,4 +1,5 @@
-/* { dg-do run { target *-*-linux* *-*-gnu* *-*-uclinux* } } */
+/* { dg-require-effective-target alarm } */
+/* { dg-require-effective-target signal } */
/* { dg-options "-O" } */
#include <unistd.h>
diff --git a/gcc/testsuite/gcc.dg/vect/pr101145inf.c b/gcc/testsuite/gcc.dg/vect/pr101145inf.c
index aa59887..70aea94 100644
--- a/gcc/testsuite/gcc.dg/vect/pr101145inf.c
+++ b/gcc/testsuite/gcc.dg/vect/pr101145inf.c
@@ -1,3 +1,4 @@
+/* { dg-require-effective-target alarm } */
/* { dg-require-effective-target signal } */
/* { dg-additional-options "-O3" } */
#include <limits.h>
diff --git a/gcc/testsuite/gcc.dg/vect/pr101145inf_1.c b/gcc/testsuite/gcc.dg/vect/pr101145inf_1.c
index 0465788c..fe00828 100644
--- a/gcc/testsuite/gcc.dg/vect/pr101145inf_1.c
+++ b/gcc/testsuite/gcc.dg/vect/pr101145inf_1.c
@@ -1,3 +1,4 @@
+/* { dg-require-effective-target alarm } */
/* { dg-require-effective-target signal } */
/* { dg-additional-options "-O3" } */
#include <limits.h>
diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp
index 1785a9d..9ad1e19 100644
--- a/gcc/testsuite/lib/target-supports.exp
+++ b/gcc/testsuite/lib/target-supports.exp
@@ -14271,3 +14271,30 @@ proc add_options_for_nvptx_alloca_ptx { flags } {
return $flags
}
+
+# Return true if alarm is supported on the target.
+
+proc check_effective_target_alarm { } {
+ if { ![check_effective_target_signal] } {
+ return 0
+ }
+
+ return [check_no_compiler_messages alarm executable {
+ #include <signal.h>
+ #include <stdlib.h>
+ #include <unistd.h>
+ void do_exit(int i) { exit (0); }
+ int main (void) {
+ struct sigaction s;
+ sigemptyset (&s.sa_mask);
+ s.sa_handler = exit;
+ s.sa_flags = 0;
+ sigaction (SIGALRM, &s, NULL);
+ alarm (1);
+
+ /* Infinite loop to simulate work... */
+ while (1);
+ abort ();
+ }
+ }]
+}