You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ifruntime.GOOS=="darwin"&&strings.Contains(string(out), "nohup: can't detach from console: Inappropriate ioctl for device") {
328
+
t.Skip("Skipping nohup test due to darwin builder limitation. See https://go.dev/issue/63875.")
329
+
}
330
+
323
331
t.Errorf("ran test with -check_sighup_ignored under nohup and it failed: expected success.\nError: %v\nOutput:\n%s%s", err, out, data)
ifruntime.GOOS=="darwin"&&strings.Contains(string(out), "nohup: can't detach from console: Inappropriate ioctl for device") {
513
+
// TODO(go.dev/issue/63799): A false-positive in vet reports a
514
+
// t.Skip here as invalid. Switch back to t.Skip once fixed.
515
+
t.Logf("Skipping nohup test due to darwin builder limitation. See https://go.dev/issue/63875.")
516
+
return
517
+
}
518
+
501
519
t.Errorf("ran test with -send_uncaught_sighup=%d under nohup and it failed: expected success.\nError: %v\nOutput:\n%s", i, err, out)
502
520
} else {
503
521
t.Logf("ran test with -send_uncaught_sighup=%d under nohup.\nOutput:\n%s", i, out)
0 commit comments