We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19be15d commit 1153230Copy full SHA for 1153230
proxy/process_test.go
@@ -394,6 +394,9 @@ func TestProcess_StopImmediately(t *testing.T) {
394
// Test that SIGKILL is sent when gracefulStopTimeout is reached and properly terminates
395
// the upstream command
396
func TestProcess_ForceStopWithKill(t *testing.T) {
397
+ if runtime.GOOS == "windows" {
398
+ t.Skip("skipping SIGTERM test on Windows ")
399
+ }
400
401
expectedMessage := "test_sigkill"
402
binaryPath := getSimpleResponderPath()
0 commit comments