mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-04-29 16:58:34 +00:00
Test: Remove temporary directory afterwards (#4045)
This commit is contained in:
parent
034a485afe
commit
ce8c415d43
2 changed files with 14 additions and 0 deletions
|
@ -96,6 +96,7 @@ func InitializeServerConfig(config *core.Config) (*exec.Cmd, error) {
|
|||
|
||||
var (
|
||||
testBinaryPath string
|
||||
testBinaryCleanFn func()
|
||||
testBinaryPathGen sync.Once
|
||||
)
|
||||
|
||||
|
@ -108,6 +109,7 @@ func genTestBinaryPath() {
|
|||
return err
|
||||
}
|
||||
tempDir = dir
|
||||
testBinaryCleanFn = func() { os.RemoveAll(dir) }
|
||||
return nil
|
||||
}))
|
||||
file := filepath.Join(tempDir, "xray.test")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue