Improvements to integration tests

This commit is contained in:
Audrius Butkevicius
2015-01-21 23:59:08 +00:00
parent 7c680c955f
commit 25c664b13a
4 changed files with 24 additions and 1 deletions

View File

@@ -50,7 +50,7 @@ type syncthingProcess struct {
func (p *syncthingProcess) start() error {
if p.logfd == nil {
logfd, err := os.Create(p.instance + ".out")
logfd, err := os.Create("logs/" + getTestName() + "-" + p.instance + ".out")
if err != nil {
return err
}