@@ -5,7 +5,7 @@ import common { Task, exec }
55//
66fn all_code_is_formatted() {
77 if common.is_github_job {
8- exec('VJOBS= 1 v test- cleancode')
8+ exec('VJOBS= 1 v - silent test- cleancode')
99 } else {
1010 exec('v - progress test- cleancode')
1111 }
@@ -18,20 +18,20 @@ fn verify_v_test_works() {
1818}
1919
2020fn test_pure_v_math_module() {
21- exec('v - exclude @vlib/ math/* .c.v test vlib/math/')
21+ exec('v - silent - exclude @vlib/ math/* .c.v test vlib/math/')
2222}
2323
2424fn self_tests() {
2525 if common.is_github_job {
26- exec('VJOBS=1 v test-self vlib')
26+ exec('VJOBS=1 v -silent test-self vlib')
2727 } else {
2828 exec('v -progress test-self vlib')
2929 }
3030}
3131
3232fn build_examples() {
3333 if common.is_github_job {
34- exec('v build-examples')
34+ exec('v -silent build-examples')
3535 } else {
3636 exec('v -progress build-examples')
3737 }
@@ -129,11 +129,11 @@ fn v_self_compilation_usecache_tcc() {
129129}
130130
131131fn test_password_input_tcc() {
132- exec('v test examples/password/')
132+ exec('v -silent test examples/password/')
133133}
134134
135135fn test_readline_tcc() {
136- exec('v test examples/readline/')
136+ exec('v -silent test examples/readline/')
137137}
138138
139139fn test_leak_detector_tcc() {
@@ -178,12 +178,17 @@ fn run_sanitizers_gcc() {
178178}
179179
180180fn v_self_compilation_gcc() {
181- exec('v -o v2 cmd/v && ./v2 -o v3 cmd/v && ./v3 -o v4 cmd/v')
181+ exec('v -o v2 cmd/v')
182+ exec('./v2 -o v3 cmd/v')
183+ exec('./v3 -o v4 cmd/v')
182184}
183185
184186fn v_self_compilation_usecache_gcc() {
185187 exec('unset VFLAGS')
186- exec('v -usecache examples/hello_world.v && examples/hello_world')
188+
189+ exec('v -usecache examples/hello_world.v')
190+ exec('examples/hello_world')
191+
187192 exec('v -o v2 -usecache cmd/v')
188193 exec('./v2 -o v3 -usecache cmd/v')
189194 exec('./v3 version')
@@ -203,11 +208,12 @@ fn self_tests_gcc() {
203208}
204209
205210fn self_tests_prod_gcc() {
206- exec('v -o vprod -prod cmd/v && ./vprod test-self vlib')
211+ exec('v -o vprod -prod cmd/v')
212+ exec('./vprod -silent test-self vlib')
207213}
208214
209215fn self_tests_cstrict_gcc() {
210- exec('VTEST_JUST_ESSENTIAL=1 V_CI_CSTRICT=1 v -cc gcc -cstrict test-self vlib')
216+ exec('VTEST_JUST_ESSENTIAL=1 V_CI_CSTRICT=1 v -cc gcc -cstrict -silent test-self vlib')
211217}
212218
213219fn build_examples_gcc() {
@@ -313,11 +319,12 @@ fn self_tests_clang() {
313319}
314320
315321fn self_tests_vprod_clang() {
316- exec('v -o vprod -prod cmd/v && ./vprod test-self vlib')
322+ exec('v -o vprod -prod cmd/v')
323+ exec('./vprod -silent test-self vlib')
317324}
318325
319326fn self_tests_cstrict_clang() {
320- exec('VTEST_JUST_ESSENTIAL=1 V_CI_CSTRICT=1 ./vprod -cstrict test-self vlib')
327+ exec('VTEST_JUST_ESSENTIAL=1 V_CI_CSTRICT=1 ./vprod -cstrict -silent test-self vlib')
321328}
322329
323330fn build_examples_clang() {
0 commit comments