Commit 67806174 authored by sayantan dutta's avatar sayantan dutta

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

parent 23c5840d
...@@ -157,6 +157,9 @@ int main(void) ...@@ -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");
......
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