Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Test6907 (0.07 sec)

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

    			t.Errorf("C.myint as const = %v, want 1.5", c)
    		}
    	}
    
    	if s := C.mystring_def; s != "hello" {
    		t.Errorf("C.mystring_def = %q, want %q", s, "hello")
    	}
    }
    
    // issue 6907
    
    func test6907(t *testing.T) {
    	want := "yarn"
    	if got := C.GoString(C.Issue6907CopyString(want)); got != want {
    		t.Errorf("C.GoString(C.Issue6907CopyString(%q)) == %q, want %q", want, got, want)
    	}
    }
    
    // issue 7560
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/cgo_linux_test.go

    }
    
    func TestSetgidStress(t *testing.T) {
    	if runtime.GOOS == "android" {
    		t.Skip("unsupported on Android")
    	}
    	testSetgidStress(t)
    }
    
    func Test1435(t *testing.T) { test1435(t) }
    func Test6997(t *testing.T) { test6997(t) }
    func Test9400(t *testing.T) { test9400(t) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:01 UTC 2024
    - 662 bytes
    - Viewed (0)
Back to top