tests: unify all temporary files/folders under $VTMP/v, that can be cleaned by v wipe-cache (#15774)

This commit is contained in:
Delyan Angelov 2022-09-16 04:56:19 +03:00 committed by GitHub
parent 7e69619add
commit f922ed0941
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
28 changed files with 210 additions and 144 deletions

View file

@ -22,7 +22,7 @@ const (
show_progress = os.getenv('GITHUB_JOB') == '' && '-silent' !in os.args
non_option_args = cmdline.only_non_options(os.args[2..])
is_verbose = os.getenv('VERBOSE') != ''
vcheckfolder = os.join_path_single(os.temp_dir(), 'vcheck_$os.getuid()')
vcheckfolder = os.join_path(os.temp_dir(), 'v', 'vcheck_$os.getuid()')
)
struct CheckResult {