aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/support
diff options
context:
space:
mode:
authorGravatar jtattermusch <jtattermusch@google.com>2014-12-11 12:28:56 -0800
committerGravatar Jan Tattermusch <jtattermusch@google.com>2014-12-11 15:11:44 -0800
commit57c6f0cadebbdf973bf560e4ad67aef8fe451bc3 (patch)
treecc0a1918d79e3ad94cf0a1cf18229e9572b0f1bf /test/core/support
parent4cd6035362461cb238e4b4dc6f4932762f1c0065 (diff)
Add batch file that builds and executes all GPR tests.
Removed bad format test to fix gpr_string_test. Also took care of some of the MS compiler warnings when compiling gpr_test_util. Change on 2014/12/11 by jtattermusch <jtattermusch@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=81900639
Diffstat (limited to 'test/core/support')
-rw-r--r--test/core/support/string_test.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/core/support/string_test.c b/test/core/support/string_test.c
index 1e8039b1e8..22ae7bacf5 100644
--- a/test/core/support/string_test.c
+++ b/test/core/support/string_test.c
@@ -130,10 +130,6 @@ static void test_asprintf() {
GPR_ASSERT(buf[0] == '\0');
gpr_free(buf);
- /* Print an invalid format. */
- GPR_ASSERT(gpr_asprintf(&buf, "%") == -1);
- GPR_ASSERT(buf == NULL);
-
/* Print strings of various lengths. */
for (i = 1; i < 100; i++) {
GPR_ASSERT(gpr_asprintf(&buf, "%0*d", i, 1) == i);