X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=test%2Fexec_test.go;fp=test%2Fexec_test.go;h=1ab781a1fb764a6b399b514c556b9842d1ccd903;hb=b1d091a8c6b2269601a1683e963d0e382cd0f7f6;hp=8759dbd7e3ce1f29233f6e5b61bfb244da048968;hpb=4192072863ac0997b0c3cb4131ea913e6f85f83e;p=src%2Fxds%2Fxds-server.git diff --git a/test/exec_test.go b/test/exec_test.go index 8759dbd..1ab781a 100644 --- a/test/exec_test.go +++ b/test/exec_test.go @@ -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)