Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for test31891 (0.11 sec)

  1. src/cmd/cgo/internal/test/cgo_test.go

    func Test28896(t *testing.T)                 { test28896(t) }
    func Test30065(t *testing.T)                 { test30065(t) }
    func Test32579(t *testing.T)                 { test32579(t) }
    func Test31891(t *testing.T)                 { test31891(t) }
    func Test42018(t *testing.T)                 { test42018(t) }
    func Test45451(t *testing.T)                 { test45451(t) }
    func Test49633(t *testing.T)                 { test49633(t) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/testx.go

    // issue 31891
    
    //export useIssue31891A
    func useIssue31891A(c *C.Issue31891A) {}
    
    //export useIssue31891B
    func useIssue31891B(c *C.Issue31891B) {}
    
    func test31891(t *testing.T) {
    	C.callIssue31891()
    }
    
    // issue 37033, check if cgo.Handle works properly
    
    var issue37033 = 42
    
    //export GoFunc37033
    func GoFunc37033(handle C.uintptr_t) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue21897b.go

    // 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
    
    package cgotest
    
    import "testing"
    
    func test21897(t *testing.T) {
    	t.Skip("test runs only on darwin+cgo")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 308 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/issue21897.go

    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()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top