mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
BUG #16813006 - UNIT TEST FOR MY_VSNPRINTF FAIL FOR NON GNU COMPILER
This commit is contained in:
@ -157,6 +157,9 @@ int main(void)
|
|||||||
#if defined (__GNUC__)
|
#if defined (__GNUC__)
|
||||||
test1("Hello string `I am a string`",
|
test1("Hello string `I am a string`",
|
||||||
"Hello string %`s", "I am a string");
|
"Hello string %`s", "I am a string");
|
||||||
|
#else
|
||||||
|
test1("Hello string `I am a string`",
|
||||||
|
"Hello string %s", "I am a string");
|
||||||
#endif
|
#endif
|
||||||
test1("Hello TEST",
|
test1("Hello TEST",
|
||||||
"Hello %05s", "TEST");
|
"Hello %05s", "TEST");
|
||||||
|
Reference in New Issue
Block a user