diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/execute/builtins/printf.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/execute/builtins/printf.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/execute/builtins/printf.c b/gcc/testsuite/gcc.c-torture/execute/builtins/printf.c index 0d01e544aa1..e493f90b7cd 100644 --- a/gcc/testsuite/gcc.c-torture/execute/builtins/printf.c +++ b/gcc/testsuite/gcc.c-torture/execute/builtins/printf.c @@ -6,6 +6,7 @@ Written by Kaveh R. Ghazi, 12/4/2000. */ extern int printf (const char *, ...); +extern int printf_unlocked (const char *, ...); extern void abort(void); void @@ -28,8 +29,12 @@ main_test (void) if (s3 != s2+1 || *s3 != 0) abort(); + printf (""); + printf ("%s", ""); printf ("\n"); + printf ("%s", "\n"); printf ("hello world\n"); + printf ("%s", "hello world\n"); /* Test at least one instance of the __builtin_ style. We do this to ensure that it works and that the prototype is correct. */ @@ -38,4 +43,10 @@ main_test (void) prototypes are set correctly too. */ __builtin_putchar ('\n'); __builtin_puts ("hello"); + /* Check the unlocked style, these evaluate to nothing to avoid + problems on systems without the unlocked functions. */ + printf_unlocked (""); + __builtin_printf_unlocked (""); + printf_unlocked ("%s", ""); + __builtin_printf_unlocked ("%s", ""); } |