aboutsummaryrefslogtreecommitdiff
path: root/src/os/exec/exec_test.go
diff options
context:
space:
mode:
authorMikio Hara <mikioh.mikioh@gmail.com>2018-02-14 05:33:15 +0900
committerBrad Fitzpatrick <bradfitz@golang.org>2018-02-15 17:24:42 +0000
commitd50bb8dbb9d13858319db0914068126ed78e5144 (patch)
tree23735e4013713615d1c578f3073fe62a6a4ba130 /src/os/exec/exec_test.go
parent9542ba674d9de639ab439962fb6b308289687219 (diff)
downloadgo-d50bb8dbb9d13858319db0914068126ed78e5144.tar.gz
go-d50bb8dbb9d13858319db0914068126ed78e5144.zip
all: drop support for Windows Vista or below (Windows XP)
Per the notice in the Go 1.10 release notes, this change drops the support for Windows Vista or below (including Windows XP) and simplifies the code for the sake of maintenance. There is one exception to the above. The code related to DLL and system calls still remains in the runtime package. The remaining code will be refined and used for supporting upcoming Windows versions in future. Updates #17245 Fixes #23072 Change-Id: I9e2821721f25ef9b83dfbf85be2b7ee5d9023aa5 Reviewed-on: https://go-review.googlesource.com/94255 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/os/exec/exec_test.go')
-rw-r--r--src/os/exec/exec_test.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/os/exec/exec_test.go b/src/os/exec/exec_test.go
index d29ae697f9..ed2a55557d 100644
--- a/src/os/exec/exec_test.go
+++ b/src/os/exec/exec_test.go
@@ -1005,9 +1005,6 @@ func TestContext(t *testing.T) {
}
func TestContextCancel(t *testing.T) {
- if testenv.Builder() == "windows-386-xp" {
- t.Skipf("known to fail on Windows XP. Issue 17245")
- }
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
c := helperCommandContext(t, ctx, "cat")