aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/format/ms_c99-scanf-3.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/format/ms_c99-scanf-3.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/format/ms_c99-scanf-3.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/format/ms_c99-scanf-3.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/format/ms_c99-scanf-3.c
deleted file mode 100644
index cde2f3703..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/format/ms_c99-scanf-3.c
+++ /dev/null
@@ -1,33 +0,0 @@
-/* Test for scanf formats. Test that the C99 functions get their default
- attributes in strict C99 mode, but the gettext functions do not.
-*/
-/* Origin: Joseph Myers <jsm28@cam.ac.uk> */
-/* { dg-do compile { target { *-*-mingw* } } } */
-/* { dg-options "-std=iso9899:1999 -pedantic -Wformat" } */
-
-#define USE_SYSTEM_FORMATS
-#include "format.h"
-
-void
-foo (int *ip, char *s, va_list v0, va_list v1, va_list v2, va_list v3,
- va_list v4, va_list v5)
-{
- fscanf (stdin, "%d", ip);
- fscanf (stdin, "%ld", ip); /* { dg-warning "format" "fscanf" } */
- scanf ("%d", ip);
- scanf ("%ld", ip); /* { dg-warning "format" "scanf" } */
- sscanf (s, "%d", ip);
- sscanf (s, "%ld", ip); /* { dg-warning "format" "sscanf" } */
- vfscanf (stdin, "%d", v0);
- vfscanf (stdin, "%Y", v1); /* { dg-warning "format" "vfscanf" } */
- vscanf ("%d", v2);
- vscanf ("%Y", v3); /* { dg-warning "format" "vscanf" } */
- vsscanf (s, "%d", v4);
- vsscanf (s, "%Y", v5); /* { dg-warning "format" "vsscanf" } */
- scanf (gettext ("%d"), ip);
- scanf (gettext ("%ld"), ip);
- scanf (dgettext ("", "%d"), ip);
- scanf (dgettext ("", "%ld"), ip);
- scanf (dcgettext ("", "%d", 0), ip);
- scanf (dcgettext ("", "%ld", 0), ip);
-}