test logs: hide log
[src/xds/xds-server.git] / test / exec_test.go
index 8759dbd..1ab781a 100644 (file)
@@ -29,7 +29,7 @@ import (
 )
 
 func InitExec(t *testing.T) string {
-       t.Logf("Create helloworld directory with app-templates")
+       Debugf(t, "Create helloworld directory with app-templates")
        /*copy helloworld from fixtures to envRootCfgDir*/
        helloworldDir := path.Join(os.Getenv(envRootCfgDir), "helloworld")
        cmd := exec.Command("cp", "-r", helloworldFixturesDir, helloworldDir)
@@ -115,7 +115,7 @@ func TestExec(t *testing.T) {
                Cmd: cmd,
        }
        var execRes xsapiv1.ExecArgs
-       t.Logf("exec cmake cmd(%v)", cmd)
+       Debugf(t, "exec cmake cmd(%v)", cmd)
        assert.Nil(t, HTTPCli.Post("/exec", exec, &execRes))
        flushChannelExec(chExec, 1000) //waiting for execOutMsg
 
@@ -131,12 +131,12 @@ func TestExec(t *testing.T) {
        cmd = cmd + "make"
        exec.Cmd = cmd
        /*post exec cmd make*/
-       t.Logf("exec make cmd(%v)", cmd)
+       Debugf(t, "exec make cmd(%v)", cmd)
        assert.Nil(t, HTTPCli.Post("/exec", exec, &execRes))
        flushChannelExec(chExec, 1000) //waiting for execOutMsg
 
        /*check if helloworld.so exists*/
-       t.Log("check that helloworld.so exists")
+       Debug(t, "check that helloworld.so exists")
        _, err := os.Stat(path.Join(fPrj.ClientPath, "build/helloworld/helloworld.so"))
        assert.Nil(t, err)