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:
parent
f7a11b8e50
commit
a987f84b15
@ -320,7 +320,8 @@ fn main() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if os.getenv('VTEST_RUN_FSANITIZE_TOO_SLOW').len == 0
|
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
|
tsession.skip_files << skip_fsanitize_too_slow
|
||||||
}
|
}
|
||||||
if werror {
|
if werror {
|
||||||
|
Loading…
Reference in New Issue
Block a user