Skip to content

Commit

Permalink
add -v to testrunner, and less output in happy path
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbellamy committed Jul 31, 2015
1 parent cc7b781 commit 5a37f65
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions testing/runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ var (

useScheduler = false
runParallel = false
verbose = false

consoleLock = sync.Mutex{}
)
Expand Down Expand Up @@ -103,8 +104,10 @@ func (t test) run(hosts []string) bool {
} else {
fmt.Printf("%s>>> Test %s finished with success after %0.1f secs%s\n", succ, t.name, duration, reset)
}
fmt.Print(out.String())
fmt.Println()
if err != nil || verbose {
fmt.Print(out.String())
fmt.Println()
}
consoleLock.Unlock()

if err != nil && useScheduler {
Expand Down Expand Up @@ -237,8 +240,13 @@ func sequential(ts tests, hosts []string) bool {
func main() {
mflag.BoolVar(&useScheduler, []string{"scheduler"}, false, "Use scheduler to distribute tests across shards")
mflag.BoolVar(&runParallel, []string{"parallel"}, false, "Run tests in parallel on hosts where possible")
mflag.BoolVar(&verbose, []string{"v"}, false, "Print output from all tests (Also enabled via DEBUG=1)")
mflag.Parse()

if len(os.Getenv("DEBUG")) > 0 {
verbose = true
}

tests, err := getTests(mflag.Args())
if err != nil {
fmt.Printf("Error parsing tests: %v\n", err)
Expand Down

0 comments on commit 5a37f65

Please sign in to comment.