We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c69770f + 0f97445 commit d803606Copy full SHA for d803606
machine_test.go
@@ -759,7 +759,13 @@ func TestLogFiles(t *testing.T) {
759
stdoutPath := filepath.Join(testDataPath, "stdout.log")
760
stderrPath := filepath.Join(testDataPath, "stderr.log")
761
stdout, err := os.Create(stdoutPath)
762
+ if err != nil {
763
+ t.Fatalf("error creating %q: %v", stdoutPath, err)
764
+ }
765
stderr, err := os.Create(stderrPath)
766
767
+ t.Fatalf("error creating %q: %v", stderrPath, err)
768
769
770
fd, err := net.Listen("unix", cfg.SocketPath)
771
if err != nil {
0 commit comments