diff options
author | Jordan Rose <jordan_rose@apple.com> | 2012-09-13 02:11:03 +0000 |
---|---|---|
committer | Jordan Rose <jordan_rose@apple.com> | 2012-09-13 02:11:03 +0000 |
commit | 275b6f52c7bcafc1f3cf291813b5c60ee776965a (patch) | |
tree | 63d416b6293cf2aa0d16222df9b85a70df12c712 /test/Sema/format-strings-darwin.c | |
parent | 5f7c0add1ea1d8e1d2f920d77fd1a7b6160c2d93 (diff) |
Format strings: %D, %U, and %O are valid on Darwin (same as %d, %u, %o).
These will warn under -Wformat-non-iso, and will still be rejected
outright on other platforms.
<rdar://problem/12061922>
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163771 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/format-strings-darwin.c')
-rw-r--r-- | test/Sema/format-strings-darwin.c | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/test/Sema/format-strings-darwin.c b/test/Sema/format-strings-darwin.c new file mode 100644 index 0000000000..284cd26561 --- /dev/null +++ b/test/Sema/format-strings-darwin.c @@ -0,0 +1,64 @@ +// RUN: %clang_cc1 -fsyntax-only -verify -triple i386-apple-darwin9 -pedantic -DALLOWED %s +// RUN: %clang_cc1 -fsyntax-only -verify -triple thumbv6-apple-ios4.0 -pedantic -DALLOWED %s + +// RUN: %clang_cc1 -fsyntax-only -verify -triple x86_64-mingw32 -pedantic %s +// RUN: %clang_cc1 -fsyntax-only -verify -triple i686-pc-win32 -pedantic %s + +// RUN: %clang_cc1 -fsyntax-only -verify -triple i686-linux-gnu -pedantic %s +// RUN: %clang_cc1 -fsyntax-only -verify -triple x86_64-unknown-freebsd -pedantic %s + +int printf(const char *restrict, ...); +int scanf(const char * restrict, ...) ; + +void test() { + int justRight = 1; + long tooLong = 2; + + printf("%D", justRight); + printf("%D", tooLong); + printf("%U", justRight); + printf("%U", tooLong); + printf("%O", justRight); + printf("%O", tooLong); + +#ifdef ALLOWED + // expected-warning@-8 {{'D' conversion specifier is not supported by ISO C}} + // expected-warning@-8 {{'D' conversion specifier is not supported by ISO C}} expected-warning@-8 {{format specifies type 'int' but the argument has type 'long'}} + // expected-warning@-8 {{'U' conversion specifier is not supported by ISO C}} + // expected-warning@-8 {{'U' conversion specifier is not supported by ISO C}} expected-warning@-8 {{format specifies type 'unsigned int' but the argument has type 'long'}} + // expected-warning@-8 {{'O' conversion specifier is not supported by ISO C}} + // expected-warning@-8 {{'O' conversion specifier is not supported by ISO C}} expected-warning@-8 {{format specifies type 'unsigned int' but the argument has type 'long'}} +#else + // expected-warning@-15 {{invalid conversion specifier 'D'}} + // expected-warning@-15 {{invalid conversion specifier 'D'}} + // expected-warning@-15 {{invalid conversion specifier 'U'}} + // expected-warning@-15 {{invalid conversion specifier 'U'}} + // expected-warning@-15 {{invalid conversion specifier 'O'}} + // expected-warning@-15 {{invalid conversion specifier 'O'}} +#endif +} + +#ifdef ALLOWED +void testPrintf(short x, long y) { + printf("%hD", x); // expected-warning{{conversion specifier is not supported by ISO C}} + printf("%lD", y); // expected-warning{{conversion specifier is not supported by ISO C}} + printf("%hU", x); // expected-warning{{conversion specifier is not supported by ISO C}} + printf("%lU", y); // expected-warning{{conversion specifier is not supported by ISO C}} + printf("%hO", x); // expected-warning{{conversion specifier is not supported by ISO C}} + printf("%lO", y); // expected-warning{{conversion specifier is not supported by ISO C}} + + printf("%+'0.5lD", y); // expected-warning{{conversion specifier is not supported by ISO C}} + printf("% '0.5lD", y); // expected-warning{{conversion specifier is not supported by ISO C}} + printf("%#0.5lO", y); // expected-warning{{conversion specifier is not supported by ISO C}} + printf("%'0.5lU", y); // expected-warning{{conversion specifier is not supported by ISO C}} +} + +void testScanf(short *x, long *y) { + scanf("%hD", x); // expected-warning{{conversion specifier is not supported by ISO C}} + scanf("%lD", y); // expected-warning{{conversion specifier is not supported by ISO C}} + scanf("%hU", x); // expected-warning{{conversion specifier is not supported by ISO C}} + scanf("%lU", y); // expected-warning{{conversion specifier is not supported by ISO C}} + scanf("%hO", x); // expected-warning{{conversion specifier is not supported by ISO C}} + scanf("%lO", y); // expected-warning{{conversion specifier is not supported by ISO C}} +} +#endif |