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

ci: skip the very slow running tests in v test-self, when -asan-compiler or -msan-compiler is passed as well.

This commit is contained in:
Delyan Angelov 2022-11-22 19:52:36 +02:00
parent f7a11b8e50
commit a987f84b15
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -320,7 +320,8 @@ fn main() {
}
}
if os.getenv('VTEST_RUN_FSANITIZE_TOO_SLOW').len == 0
&& (sanitize_undefined || sanitize_memory || sanitize_address) {
&& ((sanitize_undefined || sanitize_memory || sanitize_address)
|| (msan_compiler || asan_compiler)) {
tsession.skip_files << skip_fsanitize_too_slow
}
if werror {