diff options
Diffstat (limited to 'runner.go')
-rw-r--r-- | runner.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -4,6 +4,7 @@ import ( "log" "os" "path" + "sort" ) type Runner struct { @@ -128,6 +129,8 @@ func (r Runner) Evaluate(tcs []TestCase) []TestResult { for range testSets { results = append(results, (<-c)...) } + + sort.Sort(ByReadIdx(results)) safeCd(r.dirs.Config()) |