Skip to content

Commit 4bdf014

Browse files
committed
fix JSON test output for evergreen
1 parent f7353bc commit 4bdf014

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libmongoc/tests/TestSuite.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ TestSuite_RunTest (TestSuite *suite, /* IN */
555555
if (!suite->silent) {
556556
bson_string_append_printf (
557557
buf,
558-
" { \"status\": \"SKIP\", \"test_file\": \"%s\" }%s",
558+
" { \"status\": \"skip\", \"test_file\": \"%s\" }%s",
559559
test->name,
560560
((*count) == 1) ? "" : ",");
561561
test_msg ("%s", buf->str);
@@ -606,7 +606,7 @@ TestSuite_RunTest (TestSuite *suite, /* IN */
606606
"\"start\": %u.%06u, "
607607
"\"end\": %u.%06u, "
608608
"\"elapsed\": %u.%06u ",
609-
(status == 0) ? "PASS" : "FAIL",
609+
(status == 0) ? "pass" : "fail",
610610
name,
611611
test->seed,
612612
(unsigned) t1 / (1000 * 1000),

0 commit comments

Comments
 (0)