diff mbox

[testsuite,committed] Move target independent test to c.torture

Message ID 1442759974.2313.43.camel@t-online.de
State New
Headers show

Commit Message

Oleg Endo Sept. 20, 2015, 2:39 p.m. UTC
Hi,

The attached patch moves a target independent test that was hanging
around in gcc.target/sh to gcc.c-torture/compile.
Committed as r227945.

Cheers,
Oleg

testsuite/ChangeLog:
	* gcc.target/sh/pr43417.c: Move target independent test to ...
	* gcc.c-torture/compile/pr43417.c: ... here.
diff mbox

Patch

Index: gcc/testsuite/gcc.c-torture/compile/pr43417.c
===================================================================
--- gcc/testsuite/gcc.c-torture/compile/pr43417.c	(revision 0)
+++ gcc/testsuite/gcc.c-torture/compile/pr43417.c	(working copy)
@@ -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);
+}
Index: gcc/testsuite/gcc.target/sh/pr43417.c
===================================================================
--- gcc/testsuite/gcc.target/sh/pr43417.c	(revision 227943)
+++ gcc/testsuite/gcc.target/sh/pr43417.c	(working copy)
@@ -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);
-}
-