diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/format')
-rw-r--r-- | gcc/testsuite/gcc.dg/format/opt-1.c | 7 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/format/opt-2.c | 7 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/format/opt-3.c | 7 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/format/opt-4.c | 7 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/format/opt-5.c | 7 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/format/opt-6.c | 7 |
6 files changed, 42 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/format/opt-1.c b/gcc/testsuite/gcc.dg/format/opt-1.c new file mode 100644 index 00000000000..7bdb55bf666 --- /dev/null +++ b/gcc/testsuite/gcc.dg/format/opt-1.c @@ -0,0 +1,7 @@ +/* Test diagnostics for options used on their own without + -Wformat. -Wformat-extra-args. */ +/* Origin: Joseph Myers <joseph@codesourcery.com> */ +/* { dg-do compile } */ +/* { dg-options "-Wformat-extra-args" } */ + +/* { dg-warning "warning: -Wformat-extra-args ignored without -Wformat" "ignored" { target *-*-* } 0 } */ diff --git a/gcc/testsuite/gcc.dg/format/opt-2.c b/gcc/testsuite/gcc.dg/format/opt-2.c new file mode 100644 index 00000000000..5a8f70375d7 --- /dev/null +++ b/gcc/testsuite/gcc.dg/format/opt-2.c @@ -0,0 +1,7 @@ +/* Test diagnostics for options used on their own without + -Wformat. -Wformat-nonliteral. */ +/* Origin: Joseph Myers <joseph@codesourcery.com> */ +/* { dg-do compile } */ +/* { dg-options "-Wformat-nonliteral" } */ + +/* { dg-warning "warning: -Wformat-nonliteral ignored without -Wformat" "ignored" { target *-*-* } 0 } */ diff --git a/gcc/testsuite/gcc.dg/format/opt-3.c b/gcc/testsuite/gcc.dg/format/opt-3.c new file mode 100644 index 00000000000..7722172ee06 --- /dev/null +++ b/gcc/testsuite/gcc.dg/format/opt-3.c @@ -0,0 +1,7 @@ +/* Test diagnostics for options used on their own without + -Wformat. -Wformat-security. */ +/* Origin: Joseph Myers <joseph@codesourcery.com> */ +/* { dg-do compile } */ +/* { dg-options "-Wformat-security" } */ + +/* { dg-warning "warning: -Wformat-security ignored without -Wformat" "ignored" { target *-*-* } 0 } */ diff --git a/gcc/testsuite/gcc.dg/format/opt-4.c b/gcc/testsuite/gcc.dg/format/opt-4.c new file mode 100644 index 00000000000..b526d4f92e7 --- /dev/null +++ b/gcc/testsuite/gcc.dg/format/opt-4.c @@ -0,0 +1,7 @@ +/* Test diagnostics for options used on their own without + -Wformat. -Wformat-y2k. */ +/* Origin: Joseph Myers <joseph@codesourcery.com> */ +/* { dg-do compile } */ +/* { dg-options "-Wformat-y2k" } */ + +/* { dg-warning "warning: -Wformat-y2k ignored without -Wformat" "ignored" { target *-*-* } 0 } */ diff --git a/gcc/testsuite/gcc.dg/format/opt-5.c b/gcc/testsuite/gcc.dg/format/opt-5.c new file mode 100644 index 00000000000..b7135fbb668 --- /dev/null +++ b/gcc/testsuite/gcc.dg/format/opt-5.c @@ -0,0 +1,7 @@ +/* Test diagnostics for options used on their own without + -Wformat. -Wformat-zero-length. */ +/* Origin: Joseph Myers <joseph@codesourcery.com> */ +/* { dg-do compile } */ +/* { dg-options "-Wformat-zero-length" } */ + +/* { dg-warning "warning: -Wformat-zero-length ignored without -Wformat" "ignored" { target *-*-* } 0 } */ diff --git a/gcc/testsuite/gcc.dg/format/opt-6.c b/gcc/testsuite/gcc.dg/format/opt-6.c new file mode 100644 index 00000000000..140da30c1f8 --- /dev/null +++ b/gcc/testsuite/gcc.dg/format/opt-6.c @@ -0,0 +1,7 @@ +/* Test diagnostics for options used on their own without + -Wformat. -Wmissing-format-attribute. */ +/* Origin: Joseph Myers <joseph@codesourcery.com> */ +/* { dg-do compile } */ +/* { dg-options "-Wmissing-format-attribute" } */ + +/* { dg-warning "warning: -Wmissing-format-attribute ignored without -Wformat" "ignored" { target *-*-* } 0 } */ |