Underscore fixtures dir to ignore during test run

This commit is contained in:
Derek Parker 2014-06-09 10:55:18 -05:00
parent d08710180d
commit d36297687a
8 changed files with 2 additions and 2 deletions

@ -9,7 +9,7 @@ import (
)
func grabDebugFrameSection(fp string, t *testing.T) []byte {
p, err := filepath.Abs("../fixtures/testprog")
p, err := filepath.Abs("../_fixtures/testprog")
if err != nil {
t.Fatal(err)
}

@ -45,7 +45,7 @@ func withTestProcess(name string, t *testing.T, fn testfunc) {
}
func StartTestProcess(name string) (*exec.Cmd, error) {
cmd := exec.Command("../fixtures/" + name)
cmd := exec.Command("../_fixtures/" + name)
err := cmd.Start()
if err != nil {