From da51a7fd73165c35959a0f3c45793b6c425e7b09 Mon Sep 17 00:00:00 2001 From: Maru Newby Date: Tue, 7 May 2024 12:32:52 -0700 Subject: [PATCH] fixup: Respond to review comments --- ...hed_process_others.go => detached_process_default.go} | 0 tests/fixture/tmpnet/detached_process_windows.go | 9 ++------- 2 files changed, 2 insertions(+), 7 deletions(-) rename tests/fixture/tmpnet/{detached_process_others.go => detached_process_default.go} (100%) 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") }