Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test20369 (0.19 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

    		t.Errorf("got %v but expected %v", C.issue20129, 2)
    	}
    }
    
    // issue 20369
    
    func test20369(t *testing.T) {
    	if C.XUINT64_MAX != math.MaxUint64 {
    		t.Fatalf("got %v, want %v", uint64(C.XUINT64_MAX), uint64(math.MaxUint64))
    	}
    }
    
    // issue 21668
    
    var issue21668_X = C.x21668
    
    // issue 21708
    
    func test21708(t *testing.T) {
    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/issue20266.go

    // Issue 20266: use -I with a relative path.
    
    package cgotest
    
    /*
    #cgo CFLAGS: -I issue20266 -Iissue20266 -Ddef20266
    #include "issue20266.h"
    */
    import "C"
    
    import "testing"
    
    func test20266(t *testing.T) {
    	if got, want := C.issue20266, 20266; got != want {
    		t.Errorf("got %d, want %d", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 463 bytes
    - Viewed (0)
Back to top