Lines Matching full:hello
297 test_format("hello, world", 50, 0, "hello, world", __LINE__);
298 test_format("hello, world", 50, 4, " hello, world", __LINE__);
299 test_format("hello, world", 3, 0, "hello, world", __LINE__);
302 test_format("a string %s ", 50, 0, "a string hello ", __LINE__, "hello");
353 x = utrace_format(buf, 100, 0, "%s", "Hello, World.");
354 TEST_ASSERT(strcmp(buf, "Hello, World.") == 0);