Commit c5d744a4 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

os/exec: skip TestContextCancel on the Windows XP builder

Updates #17245

Change-Id: I3d7ea362809040fbbba4b33efd57bf2d27d4c390
Reviewed-on: https://go-review.googlesource.com/87257Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent e7303a72
......@@ -1005,6 +1005,9 @@ 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")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment