Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for test28896 (0.14 sec)

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

    func Test26066(t *testing.T)                 { test26066(t) }
    func Test26213(t *testing.T)                 { test26213(t) }
    func Test27660(t *testing.T)                 { test27660(t) }
    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) }
    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/test.go

    	case 1:
    		return unsafe.Offsetof(po.g2)
    	case 2:
    		return unsafe.Offsetof(ui.f2)
    	case 3:
    		return unsafe.Offsetof(uo.g2)
    	default:
    		panic("can't happen")
    	}
    }
    
    func test28896(t *testing.T) {
    	for i := 0; i < 4; i++ {
    		c := uintptr(C.offset(C.int(i)))
    		g := offset(i)
    		if c != g {
    			t.Errorf("%d: C: %d != Go %d", i, c, g)
    		}
    	}
    }
    
    // issue 29383
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K 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