1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tests: sort the test session file paths before running the tests

This commit is contained in:
Delyan Angelov 2020-09-26 10:11:28 +03:00
parent faca9e2f06
commit 1fb127ba79

View File

@ -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()
}