aboutsummaryrefslogtreecommitdiff
path: root/runner.go
diff options
context:
space:
mode:
Diffstat (limited to 'runner.go')
-rw-r--r--runner.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/runner.go b/runner.go
index 9c1e385..15f08ae 100644
--- a/runner.go
+++ b/runner.go
@@ -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())