tools: remove specific case for FreeBSD in cmd/tools/vtest_test.v (#24707)

This commit is contained in:
Laurent Cheylus 2025-06-12 21:27:27 +02:00 committed by GitHub
parent 4dc66e2675
commit b77887ee22
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,11 +13,7 @@ fn testsuite_end() {
}
fn testsuite_begin() {
$if freebsd {
os.setenv('VFLAGS', '-cc clang', true)
} $else {
os.setenv('VFLAGS', '', true)
}
os.setenv('VFLAGS', '', true)
os.setenv('VCOLORS', 'never', true)
os.setenv('VJOBS', '2', true)
os.rmdir_all(tpath) or {}