diff --git a/tests/fixture/tmpnet/detached_process_others.go b/tests/fixture/tmpnet/detached_process_default.go similarity index 100% rename from tests/fixture/tmpnet/detached_process_others.go rename to tests/fixture/tmpnet/detached_process_default.go diff --git a/tests/fixture/tmpnet/detached_process_windows.go b/tests/fixture/tmpnet/detached_process_windows.go index 34ee11fcc003..ed7e9908c5d4 100644 --- a/tests/fixture/tmpnet/detached_process_windows.go +++ b/tests/fixture/tmpnet/detached_process_windows.go @@ -5,13 +5,8 @@ package tmpnet -import ( - "os/exec" - "syscall" -) +import "os/exec" func configureDetachedProcess(cmd *exec.Cmd) { - cmd.SysProcAttr = &syscall.SysProcAttr{ - CreationFlags: syscall.CREATE_NEW_PROCESS_GROUP, - } + panic("tmpnet deployment to windows is not supported") }