1
0
Fork 0
mirror of https://github.com/vbatts/go-mtree.git synced 2025-06-29 04:58:28 +00:00

cli.test: fail on cli tests

This cleans up the Makefile target, and drops the dependency to point to
the $root path of the repo.

Fixes https://github.com/vbatts/go-mtree/issues/98

Reported-by: Aleksa Sarai <asarai@suse.de>
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2016-11-22 10:57:47 -05:00
parent 13131d516b
commit f49f66f61e
Signed by: vbatts
GPG key ID: 10937E57733F1362
7 changed files with 32 additions and 8 deletions

26
test/cli.go Normal file
View file

@ -0,0 +1,26 @@
package main
import (
"flag"
"fmt"
"os"
"os/exec"
)
func main() {
flag.Parse()
failed := 0
for _, arg := range flag.Args() {
cmd := exec.Command("bash", arg)
cmd.Stderr = os.Stderr
cmd.Stdout = os.Stdout
if err := cmd.Run(); err != nil {
failed++
}
}
if failed > 0 {
fmt.Printf("%d FAILED tests\n", failed)
os.Exit(1)
}
}