mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
tests: unify all temporary files/folders under $VTMP/v
, that can be cleaned by v wipe-cache
(#15774)
This commit is contained in:
parent
7e69619add
commit
f922ed0941
28 changed files with 210 additions and 144 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue