mirror of
https://github.com/golang/go
synced 2024-11-05 22:26:10 -07:00
5d076d579a
Go 1.14 will drop support for macOS 10.10, see #23011 This reverts CL 125304 Updates #26475 Updates #26513 Change-Id: Ia13eef30f22d67103f7ae45424124fbb116e1261 Reviewed-on: https://go-review.googlesource.com/c/go/+/214057 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
14 lines
301 B
Go
14 lines
301 B
Go
// Copyright 2017 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build !darwin !cgo internal
|
|
|
|
package cgotest
|
|
|
|
import "testing"
|
|
|
|
func test21897(t *testing.T) {
|
|
t.Skip("test runs only on darwin+cgo")
|
|
}
|