We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e2d0e1 commit acb4765Copy full SHA for acb4765
src/os/signal/signal_test.go
@@ -255,6 +255,12 @@ func TestNohup(t *testing.T) {
255
256
Stop(c)
257
258
+ // Skip the nohup test below when running in tmux on darwin, since nohup
259
+ // doesn't work correctly there. See issue #5135.
260
+ if runtime.GOOS == "darwin" && os.Getenv("TMUX") != "" {
261
+ t.Skip("Skipping nohup test due to running in tmux on darwin")
262
+ }
263
+
264
// Again, this time with nohup, assuming we can find it.
265
_, err := os.Stat("/usr/bin/nohup")
266
if err != nil {
0 commit comments