mirror of
https://github.com/golang/go
synced 2024-11-06 01:56:12 -07:00
98f3d7fecb
CL 294430 made packages in std and cmd modules use Go 1.17 gofmt format, adding //go:build lines. This change applies the same formatting to some more packages that 'go fmt' missed (e.g., syscall/js, runtime/msan), and everything else that is easy and safe to modify in bulk. Consider the top-level test directory, testdata, and vendor directories out of scope, since there are many files that don't follow strict gofmt formatting, often for intentional and legitimate reasons (testing gofmt itself, invalid Go programs that shouldn't crash the compiler, etc.). That makes it easy and safe to gofmt -w the .go files that are found with gofmt -l with aforementioned directories filtered out: $ gofmt -l . 2>/dev/null | \ grep -v '^test/' | \ grep -v '/testdata/' | \ grep -v '/vendor/' | wc -l 51 None of the 51 files are generated. After this change, the same command prints 0. For #41184. Change-Id: Ia96ee2a0f998d6a167d4473bcad17ad09bc1d86e Reviewed-on: https://go-review.googlesource.com/c/go/+/341009 Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org> Trust: Dmitri Shuralyov <dmitshur@golang.org>
58 lines
1.4 KiB
Go
58 lines
1.4 KiB
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.
|
|
|
|
//go:build darwin && cgo && !internal
|
|
// +build darwin,cgo,!internal
|
|
|
|
package cgotest
|
|
|
|
/*
|
|
#cgo LDFLAGS: -framework CoreFoundation
|
|
#include <CoreFoundation/CoreFoundation.h>
|
|
*/
|
|
import "C"
|
|
import (
|
|
"runtime/debug"
|
|
"testing"
|
|
"unsafe"
|
|
)
|
|
|
|
func test21897(t *testing.T) {
|
|
// Please write barrier, kick in soon.
|
|
defer debug.SetGCPercent(debug.SetGCPercent(1))
|
|
|
|
for i := 0; i < 10000; i++ {
|
|
testCFNumberRef()
|
|
testCFDateRef()
|
|
testCFBooleanRef()
|
|
// Allocate some memory, so eventually the write barrier is enabled
|
|
// and it will see writes of bad pointers in the test* functions below.
|
|
byteSliceSink = make([]byte, 1024)
|
|
}
|
|
}
|
|
|
|
var byteSliceSink []byte
|
|
|
|
func testCFNumberRef() {
|
|
var v int64 = 0
|
|
xCFNumberRef = C.CFNumberCreate(C.kCFAllocatorSystemDefault, C.kCFNumberSInt64Type, unsafe.Pointer(&v))
|
|
//fmt.Printf("CFNumberRef: %x\n", uintptr(unsafe.Pointer(xCFNumberRef)))
|
|
}
|
|
|
|
var xCFNumberRef C.CFNumberRef
|
|
|
|
func testCFDateRef() {
|
|
xCFDateRef = C.CFDateCreate(C.kCFAllocatorSystemDefault, 0) // 0 value is 1 Jan 2001 00:00:00 GMT
|
|
//fmt.Printf("CFDateRef: %x\n", uintptr(unsafe.Pointer(xCFDateRef)))
|
|
}
|
|
|
|
var xCFDateRef C.CFDateRef
|
|
|
|
func testCFBooleanRef() {
|
|
xCFBooleanRef = C.kCFBooleanFalse
|
|
//fmt.Printf("CFBooleanRef: %x\n", uintptr(unsafe.Pointer(xCFBooleanRef)))
|
|
}
|
|
|
|
var xCFBooleanRef C.CFBooleanRef
|