ms-format3.c: New test for specific MS types.
authorOzkan Sezer <sezeroz@gmail.com>
Fri, 5 Feb 2010 17:22:54 +0000 (17:22 +0000)
committerKai Tietz <ktietz@gcc.gnu.org>
Fri, 5 Feb 2010 17:22:54 +0000 (18:22 +0100)
2010-02-05  Ozkan Sezer  <sezeroz@gmail.com>

        * gcc.dg/format/ms-format3.c: New test for specific MS types.

From-SVN: r156523

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/format/ms-format3.c [new file with mode: 0644]

index bc91d5828e3e10de6fcf6a85169efca4f5c01a8b..fdb749509de509581cbb9693d0fda627f4477596 100644 (file)
@@ -1,3 +1,7 @@
+2010-02-05  Ozkan Sezer  <sezeroz@gmail.com>
+
+       * gcc.dg/format/ms-format3.c: New test for specific MS types.
+
 2010-02-05  Richard Guenther  <rguenther@suse.de>
 
        * gcc.dg/tree-ssa/ssa-ccp-28.c: New testcase.
diff --git a/gcc/testsuite/gcc.dg/format/ms-format3.c b/gcc/testsuite/gcc.dg/format/ms-format3.c
new file mode 100644 (file)
index 0000000..806ddb6
--- /dev/null
@@ -0,0 +1,20 @@
+/* Test for printf formats.  Formats using extensions to the standard
+   should be rejected in strict pedantic mode. But allowed by -Wno-pedantic-ms-format.
+*/
+/* Tests for specific MS types, origin: Ozkan Sezer <sezeroz@gmail.com> */
+/* { dg-do compile { target { *-*-mingw* } } } */
+/* { dg-options "-std=iso9899:1999 -pedantic -Wformat -Wno-pedantic-ms-format" } */
+
+#define USE_SYSTEM_FORMATS
+#define WIN32_LEAN_AND_MEAN
+#include "format.h"
+#include <windows.h>
+
+void foo (LONG_PTR l, ULONG_PTR u, DWORD_PTR d, UINT_PTR p, SIZE_T s)
+{
+  printf ("%Id\n", l);
+  printf ("%Iu\n", u);
+  printf ("%Iu\n", d);
+  printf ("%Iu\n", p);
+  printf ("%Iu\n", s);
+}