summaryrefslogtreecommitdiffstats
path: root/cmd/platform
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/platform')
-rw-r--r--cmd/platform/test.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/cmd/platform/test.go b/cmd/platform/test.go
index 124397350..65a8528d0 100644
--- a/cmd/platform/test.go
+++ b/cmd/platform/test.go
@@ -60,18 +60,34 @@ func executeTestCommand(cmd *exec.Cmd) {
cmdOutPipe, err := cmd.StdoutPipe()
if err != nil {
CommandPrintErrorln("Failed to run tests")
+ os.Exit(1)
+ return
+ }
+
+ cmdErrOutPipe, err := cmd.StderrPipe()
+ if err != nil {
+ CommandPrintErrorln("Failed to run tests")
+ os.Exit(1)
return
}
cmdOutReader := bufio.NewScanner(cmdOutPipe)
+ cmdErrOutReader := bufio.NewScanner(cmdErrOutPipe)
go func() {
for cmdOutReader.Scan() {
fmt.Println(cmdOutReader.Text())
}
}()
+ go func() {
+ for cmdErrOutReader.Scan() {
+ fmt.Println(cmdErrOutReader.Text())
+ }
+ }()
+
if err := cmd.Run(); err != nil {
CommandPrintErrorln("Client Tests failed")
+ os.Exit(1)
return
}
}