Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test26066 (0.13 sec)

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

    func Test23356(t *testing.T)                 { test23356(t) }
    func Test24206(t *testing.T)                 { test24206(t) }
    func Test25143(t *testing.T)                 { test25143(t) }
    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) }
    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("issue25143sum(1, 2, 3) == %v, expected %v", got, want)
    	}
    }
    
    // issue 26066
    // Wrong type of constant with GCC 8 and newer.
    
    func test26066(t *testing.T) {
    	var i = int64(C.issue26066)
    	if i != -1 {
    		t.Errorf("got %d, want -1", i)
    	}
    }
    
    // issue 26517
    var a C.TypeOne
    var b C.TypeTwo
    
    // issue 27660
    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