Commit 0195ef96 authored by sayantan dutta's avatar sayantan dutta

BUG #16813006 - UNIT TEST FOR MY_VSNPRINTF FAIL FOR NON GNU COMPILER

parent 0a05d9b8
......@@ -157,6 +157,9 @@ int main(void)
#if defined (__GNUC__)
test1("Hello string `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
test1("Hello TEST",
"Hello %05s", "TEST");
......
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