From 1fb127ba793c178244af37caae0ce50a92ddb2a8 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sat, 26 Sep 2020 10:11:28 +0300 Subject: [PATCH] tests: sort the test session file paths before running the tests --- cmd/tools/modules/testing/common.v | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/tools/modules/testing/common.v b/cmd/tools/modules/testing/common.v index 0aca8eb2d6..38ddf0d815 100644 --- a/cmd/tools/modules/testing/common.v +++ b/cmd/tools/modules/testing/common.v @@ -58,6 +58,7 @@ pub fn new_test_session(_vargs string) TestSession { } pub fn (mut ts TestSession) init() { + ts.files.sort() ts.benchmark = benchmark.new_benchmark_no_cstep() }