add debugging

This commit is contained in:
risk danger olson 2015-10-27 07:03:18 -06:00
parent a999185936
commit 626190f7c5

@ -11,12 +11,17 @@ import (
)
var (
debugging = false
erroring = false
maxprocs = 4
testPattern = regexp.MustCompile(`test/test-([a-z\-]+)\.sh$`)
)
func mainIntegration() {
if len(os.Getenv("DEBUG")) > 0 {
debugging = true
}
if maxprocs < 1 {
maxprocs = 1
}
@ -111,9 +116,16 @@ func testFiles() []string {
func allTestFiles() []string {
files := make([]string, 0, 100)
filepath.Walk("test", func(path string, info os.FileInfo, err error) error {
if debugging {
fmt.Println("FOUND:", path)
}
if err != nil || info.IsDir() || !testPattern.MatchString(path) {
return nil
}
if debugging {
fmt.Println("MATCHING:", path)
}
files = append(files, path)
return nil
})