vitess-gh/go/testfiles/locate.go

20 строки
395 B
Go
Исходник Обычный вид История

2013-12-03 07:53:16 +04:00
// Copyright 2013, Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package testfiles
import (
"fmt"
"os"
"path"
)
func Locate(filename string) string {
vtroot := os.Getenv("VTROOT")
if vtroot == "" {
panic(fmt.Errorf("VTROOT is not set"))
}
return path.Join(vtroot, "data", "test", filename)
}