diff options
-rw-r--r-- | test/Sema/format-strings.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Sema/format-strings.c b/test/Sema/format-strings.c index 4cd4db26eb..e2686a885e 100644 --- a/test/Sema/format-strings.c +++ b/test/Sema/format-strings.c @@ -214,7 +214,9 @@ void test_unicode_conversions(wchar_t *s) { printf("%s", s); // expected-warning{{conversion specifies type 'char *' but the argument has type 'wchar_t *'}} printf("%C", s[0]); // no-warning printf("%c", s[0]); - printf("%C", 10); + // FIXME: This test reports inconsistent results. On Windows, '%C' expects + // 'unsigned short'. + // printf("%C", 10); // FIXME: we report the expected type as 'int*' instead of 'wchar_t*' printf("%S", "hello"); // expected-warning{{but the argument has type 'char *'}} } |