Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TestSprintf (0.5 sec)

  1. src/fmt/fmt_test.go

    func zeroFill(prefix string, width int, suffix string) string {
    	return prefix + strings.Repeat("0", width-len(suffix)) + suffix
    }
    
    func TestSprintf(t *testing.T) {
    	for _, tt := range fmtTests {
    		s := Sprintf(tt.fmt, tt.val)
    		i := strings.Index(tt.out, "PTR")
    		if i >= 0 && i < len(s) {
    			var pattern, chars string
    			switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/cgo_test.go

    func TestMultipleAssign(t *testing.T)        { testMultipleAssign(t) }
    func TestNaming(t *testing.T)                { testNaming(t) }
    func TestPanicFromC(t *testing.T)            { testPanicFromC(t) }
    func TestPrintf(t *testing.T)                { testPrintf(t) }
    func TestReturnAfterGrow(t *testing.T)       { testReturnAfterGrow(t) }
    func TestReturnAfterGrowFromGo(t *testing.T) { testReturnAfterGrowFromGo(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)
  3. src/cmd/cgo/internal/test/test.go

    	}
    	_, e = C.g2(C.EINVAL, C._expA, C._expB, C._expC, C._expD)
    	if e != syscall.EINVAL {
    		t.Errorf("got %q, expect %q", e, syscall.EINVAL)
    	}
    }
    
    // issue 3945
    
    func testPrintf(t *testing.T) {
    	C.say()
    }
    
    // issue 4054
    
    var issue4054a = []int{C.A, C.B, C.C, C.D, C.E, C.F, C.G, C.H, C.I, C.J}
    
    // issue 4339
    
    func test4339(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)
Back to top