Skip to content

Commit ee2b5d7

Browse files
committed
ci: fix ./v test vlib/v/generics/new_generics_regression_test.v
1 parent bf29124 commit ee2b5d7

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

‎vlib/v/generics/new_generics_regression_test.v‎

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ const vroot = @VEXEROOT
1818
const vtrace_output = os.getenv('VTRACE_OUTPUT').int() != 0
1919

2020
fn testsuite_begin() {
21-
os.chdir(@VEXEROOT)!
21+
unbuffer_stdout()
22+
os.chdir(vroot)!
2223
os.setenv('VJOBS', '1', true)
24+
// important, when this test itself is run through `v test`; this simplify the handling of the output of the inner `v test` commands
25+
os.setenv('VCOLORS', 'never', true)
2326
}
2427

2528
fn test_new_generic_solver_does_not_regress_silently() {

0 commit comments

Comments
 (0)