Skip to content

Commit 278b8dd

Browse files
committed
Pull in PR #553.
Bump release.
1 parent 43a3256 commit 278b8dd

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

auto/unity_test_summary.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,10 @@ def usage(err_msg = nil)
8686
def get_details(_result_file, lines)
8787
results = { failures: [], ignores: [], successes: [] }
8888
lines.each do |line|
89-
_src_file, _src_line, _test_name, status, _msg = line.split(/:/)
89+
status_match = line.match(/^[^:]+:[^:]+:\w+(?:\([^\)]*\))?:([^:]+):?/)
90+
next unless status_match
91+
status = status_match.captures[0]
92+
9093
line_out = (@root && (@root != 0) ? "#{@root}#{line}" : line).gsub(/\//, '\\')
9194
case status
9295
when 'IGNORE' then results[:ignores] << line_out

src/unity.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
#define UNITY
1010

1111
#define UNITY_VERSION_MAJOR 2
12-
#define UNITY_VERSION_MINOR 5
13-
#define UNITY_VERSION_BUILD 4
12+
#define UNITY_VERSION_MINOR 6
13+
#define UNITY_VERSION_BUILD 0
1414
#define UNITY_VERSION ((UNITY_VERSION_MAJOR << 16) | (UNITY_VERSION_MINOR << 8) | UNITY_VERSION_BUILD)
1515

1616
#ifdef __cplusplus

0 commit comments

Comments
 (0)