Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(all): update opentelemetry-go monorepo #3575

Prev Previous commit
Next Next commit
add stdout and stderr from binary execution, for debugging
muncus committed Feb 5, 2024

Verified

This commit was signed with the committer’s verified signature.
commit f94dc17c916d84856d51b4b16f66fab53d59d575
5 changes: 4 additions & 1 deletion opentelemetry/trace/main_test.go
Original file line number Diff line number Diff line change
@@ -35,9 +35,12 @@ func TestWriteTraces(t *testing.T) {
tc := testutil.SystemTest(t)
// Run the example to export to the samples project
testStart := time.Now()
_, _, err := m.Run(map[string]string{"GOOGLE_CLOUD_PROJECT": tc.ProjectID}, 10*time.Second)
sout, serr, err := m.Run(map[string]string{"GOOGLE_CLOUD_PROJECT": tc.ProjectID}, 10*time.Second)
if err != nil {
t.Log(sout)
t.Log(serr)
t.Fatalf("Failed to run the trace example binary: %v", err)

}
testEnd := time.Now()