re PR target/48209 (FAIL: gcc.c-torture/execute/pr47917.c execution)
authorSteve Ellcey <sje@cup.hp.com>
Thu, 24 Mar 2011 16:29:18 +0000 (16:29 +0000)
committerSteve Ellcey <sje@gcc.gnu.org>
Thu, 24 Mar 2011 16:29:18 +0000 (16:29 +0000)
2011-03-24  Steve Ellcey  <sje@cup.hp.com>

PR target/48209
* gcc.c-torture/execute/pr47917.c: Move this...
* gcc.dg/torture/pr47917.c: to here and add xfails.

From-SVN: r171404

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/pr47917.c [deleted file]
gcc/testsuite/gcc.dg/torture/pr47917.c [new file with mode: 0644]

index dab36a8c6842dfd552ae563c9aac69a2fe5f429f..b7cad7f297b8d8fa3763641d9770b5d8275c6ed6 100644 (file)
@@ -1,3 +1,9 @@
+2011-03-24  Steve Ellcey  <sje@cup.hp.com>
+
+       PR target/48209
+       * gcc.c-torture/execute/pr47917.c: Move this...
+       * gcc.dg/torture/pr47917.c: to here and add xfails.
+
 2011-03-24  Eric Botcazou  <ebotcazou@adacore.com>
 
        * gnat.dg/array16.ad[sb]: New test.
diff --git a/gcc/testsuite/gcc.c-torture/execute/pr47917.c b/gcc/testsuite/gcc.c-torture/execute/pr47917.c
deleted file mode 100644 (file)
index 3d8a9bc..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-/* PR middle-end/47917 */
-
-extern int snprintf (char *, __SIZE_TYPE__, const char *, ...);
-extern int memcmp (const void *, const void *, __SIZE_TYPE__);
-extern void abort (void);
-
-char buf1[6], buf2[6], buf3[4], buf4[4];
-int i;
-
-int
-foo (void)
-{
-  int ret = snprintf (buf1, sizeof buf1, "abcde");
-  ret += snprintf (buf2, sizeof buf2, "abcdef") * 16;
-  ret += snprintf (buf3, sizeof buf3, "%s", i++ < 6 ? "abc" : "def") * 256;
-  ret += snprintf (buf4, sizeof buf4, "%s", i++ > 10 ? "abcde" : "defgh") * 4096;
-  return ret;
-}
-
-int
-main (void)
-{
-  if (foo () != 5 + 6 * 16 + 3 * 256 + 5 * 4096)
-    abort ();
-  if (memcmp (buf1, "abcde", 6) != 0
-      || memcmp (buf2, "abcde", 6) != 0
-      || memcmp (buf3, "abc", 4) != 0
-      || memcmp (buf4, "def", 4) != 0
-      || i != 2)
-    abort ();
-  return 0;
-}
diff --git a/gcc/testsuite/gcc.dg/torture/pr47917.c b/gcc/testsuite/gcc.dg/torture/pr47917.c
new file mode 100644 (file)
index 0000000..4b56c04
--- /dev/null
@@ -0,0 +1,37 @@
+/* { dg-do run } */
+/* { dg-options "-std=c99" } */
+/* { dg-xfail-if "no C99 snprintf function" { *-*-hpux10* } } */
+/* { dg-xfail-run-if "non-conforming C99 snprintf" { *-*-hpux11.[012]* } } */
+
+/* PR middle-end/47917 */
+
+extern int snprintf (char *, __SIZE_TYPE__, const char *, ...);
+extern int memcmp (const void *, const void *, __SIZE_TYPE__);
+extern void abort (void);
+
+char buf1[6], buf2[6], buf3[4], buf4[4];
+int i;
+
+int
+foo (void)
+{
+  int ret = snprintf (buf1, sizeof buf1, "abcde");
+  ret += snprintf (buf2, sizeof buf2, "abcdef") * 16;
+  ret += snprintf (buf3, sizeof buf3, "%s", i++ < 6 ? "abc" : "def") * 256;
+  ret += snprintf (buf4, sizeof buf4, "%s", i++ > 10 ? "abcde" : "defgh") * 4096;
+  return ret;
+}
+
+int
+main (void)
+{
+  if (foo () != 5 + 6 * 16 + 3 * 256 + 5 * 4096)
+    abort ();
+  if (memcmp (buf1, "abcde", 6) != 0
+      || memcmp (buf2, "abcde", 6) != 0
+      || memcmp (buf3, "abc", 4) != 0
+      || memcmp (buf4, "def", 4) != 0
+      || i != 2)
+    abort ();
+  return 0;
+}