pr43417.c: Move target independent test to ...
authorOleg Endo <olegendo@gcc.gnu.org>
Sun, 20 Sep 2015 14:36:58 +0000 (14:36 +0000)
committerOleg Endo <olegendo@gcc.gnu.org>
Sun, 20 Sep 2015 14:36:58 +0000 (14:36 +0000)
gcc/testsuite/
* gcc.target/sh/pr43417.c: Move target independent test to ...
* gcc.c-torture/compile/pr43417.c: ... here.

From-SVN: r227945

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/compile/pr43417.c [new file with mode: 0644]
gcc/testsuite/gcc.target/sh/pr43417.c [deleted file]

index 9142a39f3676c99a9f2f572378cad8e77bb87fbb..305d6a8e476e6942efc782210455b29d3bed65ca 100644 (file)
@@ -1,3 +1,8 @@
+2015-09-20  Oleg Endo  <olegendo@gcc.gnu.org>
+
+       * gcc.target/sh/pr43417.c: Move target independent test to ...
+       * gcc.c-torture/compile/pr43417.c: ... here.
+
 2015-09-20  Oleg Endo  <olegendo@gcc.gnu.org>
 
        * gcc.target/sh/sh.exp (check_effective_target_sh4a,
diff --git a/gcc/testsuite/gcc.c-torture/compile/pr43417.c b/gcc/testsuite/gcc.c-torture/compile/pr43417.c
new file mode 100644 (file)
index 0000000..45bf053
--- /dev/null
@@ -0,0 +1,39 @@
+int pid_count = 0;
+
+unsigned int getopt (int, const char**, const char*);
+unsigned long long atoll (const char*);
+int fork (void);
+void kill (int, int);
+
+int
+main (int argc, const char *argv[])
+{
+  unsigned int c;
+  unsigned long long maxbytes = 0;
+  extern const char *optarg;
+  int i;
+  int pid_cntr;
+  int pid;
+  int pid_list[1000];
+  while ((c = getopt (argc, argv, "c:b:p:wvh")) != (-1))
+    {
+      switch ((char) c)
+       {
+       case 'b':
+         maxbytes = atoll (optarg);
+       }
+    }
+  pid = fork ();
+  while ((pid != 0) && (maxbytes > 1024 * 1024 * 1024))
+    {
+      maxbytes = maxbytes - (1024 * 1024 * 1024);
+      pid = fork ();
+      if (pid != 0)
+       pid_cntr++;
+      pid_list[i] = pid;
+    }
+  while ((pid_count < pid_cntr))
+    {
+    }
+  kill (pid_list[i], 9);
+}
diff --git a/gcc/testsuite/gcc.target/sh/pr43417.c b/gcc/testsuite/gcc.target/sh/pr43417.c
deleted file mode 100644 (file)
index 67b1158..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-O2 -m4" } */
-
-int pid_count = 0;
-
-unsigned int getopt (int, const char**, const char*);
-unsigned long long atoll (const char*);
-int fork (void);
-void kill (int, int);
-
-int
-main (int argc, const char *argv[])
-{
-  unsigned int c;
-  unsigned long long maxbytes = 0;
-  extern const char *optarg;
-  int i;
-  int pid_cntr;
-  int pid;
-  int pid_list[1000];
-  while ((c = getopt (argc, argv, "c:b:p:wvh")) != (-1))
-    {
-      switch ((char) c)
-       {
-       case 'b':
-         maxbytes = atoll (optarg);
-       }
-    }
-  pid = fork ();
-  while ((pid != 0) && (maxbytes > 1024 * 1024 * 1024))
-    {
-      maxbytes = maxbytes - (1024 * 1024 * 1024);
-      pid = fork ();
-      if (pid != 0)
-       pid_cntr++;
-      pid_list[i] = pid;
-    }
-  while ((pid_count < pid_cntr))
-    {
-    }
-  kill (pid_list[i], 9);
-}
-