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

ci: show failing compilation output in draw_fns_api_test.v (make diagnostic easier)

This commit is contained in:
Delyan Angelov 2022-02-22 16:53:06 +02:00
parent 6486fffc5a
commit d2e8302d21
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -10,6 +10,7 @@ fn test_all_samples_can_be_compiled() {
res := os.execute(compile_cmd)
if res.exit_code != 0 {
eprintln('>>> FAIL $compile_cmd')
eprintln(res.output)
fails << compile_cmd
}
println('OK $compile_cmd')