Commit 6cfcda99 authored by 's avatar Committed by Alexandre Julliard

Add test for correctly interpreting %% printf format string conversion

specifier.
parent 77cddfe7
...@@ -269,6 +269,11 @@ static void test_sprintf( void ) ...@@ -269,6 +269,11 @@ static void test_sprintf( void )
r = sprintf(buffer, format, 0x100+'X'); r = sprintf(buffer, format, 0x100+'X');
ok(!strcmp(buffer,"xXx"), "failed\n"); ok(!strcmp(buffer,"xXx"), "failed\n");
ok( r==3, "return count wrong\n"); ok( r==3, "return count wrong\n");
format = "%%0";
r = sprintf(buffer, format);
ok(!strcmp(buffer,"%0"), "failed: \"%s\"\n", buffer);
ok( r==2, "return count wrong\n");
} }
static void test_swprintf( void ) static void test_swprintf( void )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment