Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for test20129 (0.23 sec)

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

    func Test18126(t *testing.T)                 { test18126(t) }
    func Test18720(t *testing.T)                 { test18720(t) }
    func Test20129(t *testing.T)                 { test20129(t) }
    func Test20266(t *testing.T)                 { test20266(t) }
    func Test20369(t *testing.T)                 { test20369(t) }
    func Test20910(t *testing.T)                 { test20910(t) }
    func Test21708(t *testing.T)                 { test21708(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

    	}
    
    	// Issue 20125.
    	if got, want := C.SIZE_OF_FOO, 1; got != want {
    		t.Errorf("C.SIZE_OF_FOO == %v, expected %v", got, want)
    	}
    }
    
    // issue 20129
    
    func test20129(t *testing.T) {
    	if C.issue20129 != 0 {
    		t.Fatal("test is broken")
    	}
    	C.issue20129Foo()
    	if C.issue20129 != 1 {
    		t.Errorf("got %v but expected %v", C.issue20129, 1)
    	}
    	C.issue20129Bar()
    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/issue4029w.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build windows || static || (darwin && internal)
    
    package cgotest
    
    import "testing"
    
    func test4029(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 15:41:19 UTC 2023
    - 281 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/issue4029.go

    func IMPInitWithFrame() {
    	callbacks++
    }
    
    //export IMPDrawRect
    func IMPDrawRect() {
    	callbacks++
    }
    
    //export IMPWindowResize
    func IMPWindowResize() {
    	callbacks++
    }
    
    func test4029(t *testing.T) {
    	loadThySelf(t, "IMPWindowResize")
    	loadThySelf(t, "IMPDrawRect")
    	loadThySelf(t, "IMPInitWithFrame")
    	loadThySelf(t, "IMPIsOpaque")
    	if callbacks != 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 15:41:19 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top