1
0
mirror of https://github.com/beego/bee.git synced 2025-07-05 18:20:18 +00:00

resolve some merge problem

This commit is contained in:
shxsun
2013-09-24 10:49:01 +08:00
2 changed files with 1 additions and 8 deletions

View File

@ -5,8 +5,6 @@ import (
"os/exec"
path "path/filepath"
"time"
// "bytes"
)
var cmdTest = &Command{
@ -82,15 +80,10 @@ func runTest() {
var err error
icmd := exec.Command("go", "test")
//var out,errbuffer bytes.Buffer
//icmd.Stdout = &out
//icmd.Stderr = &errbuffer
icmd.Stdout = os.Stdout
icmd.Stderr = os.Stderr
colorLog("[TRAC] ============== Test Begin ===================\n")
err = icmd.Run()
//colorLog(out.String())
//colorLog(errbuffer.String())
colorLog("[TRAC] ============== Test End ===================\n")
if err != nil {