From 4da81eac5e3745ed3dce5e5917c471cc5b20cd11 Mon Sep 17 00:00:00 2001 From: Andy Williams Date: Mon, 16 May 2016 11:01:40 +0100 Subject: [PATCH] [test] use correct parsing of test errors --- src/bin/edi_consolepanel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/edi_consolepanel.c b/src/bin/edi_consolepanel.c index 4a8bcd2..53bbb7c 100644 --- a/src/bin/edi_consolepanel.c +++ b/src/bin/edi_consolepanel.c @@ -254,7 +254,7 @@ _edi_test_line_parse_suite(const char *path) _edi_test_fail++; elm_code_file_line_append(_edi_test_code->file, line->start, line->length, strdup(_current_test_dir)); } - else if (_edi_test_line_contains(line->start, 10, "*** Error")) + else if (_edi_test_line_contains(line->start, line->length, ":E:")) { _edi_test_count++; _edi_test_fail++;