Skip to content

Commit 1153230

Browse files
committed
make TestProcess_ForceStopWithKill posix only
1 parent 19be15d commit 1153230

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

proxy/process_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,9 @@ func TestProcess_StopImmediately(t *testing.T) {
394394
// Test that SIGKILL is sent when gracefulStopTimeout is reached and properly terminates
395395
// the upstream command
396396
func TestProcess_ForceStopWithKill(t *testing.T) {
397+
if runtime.GOOS == "windows" {
398+
t.Skip("skipping SIGTERM test on Windows ")
399+
}
397400

398401
expectedMessage := "test_sigkill"
399402
binaryPath := getSimpleResponderPath()

0 commit comments

Comments
 (0)