Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for test14838 (0.1 sec)

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

    func Test10303(t *testing.T)                 { test10303(t, 10) }
    func Test11925(t *testing.T)                 { test11925(t) }
    func Test12030(t *testing.T)                 { test12030(t) }
    func Test14838(t *testing.T)                 { test14838(t) }
    func Test17065(t *testing.T)                 { test17065(t) }
    func Test17537(t *testing.T)                 { test17537(t) }
    func Test18126(t *testing.T)                 { test18126(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 13930
    // Test that cgo's multiple-value special form for
    // C function calls works in variable declaration statements.
    
    var _, _ = C.abs(0)
    
    // issue 14838
    
    func test14838(t *testing.T) {
    	data := []byte{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
    	cData := C.CBytes(data)
    	defer C.free(cData)
    
    	if C.check_cbytes((*C.char)(cData), C.size_t(len(data))) == 0 {
    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/cgo_linux_test.go

    	}
    	testSetgid(t)
    }
    
    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)
  4. src/cmd/cgo/internal/test/issue1435.go

    			}
    		}
    	}
    	if !foundAThread {
    		return fmt.Errorf("found no thread /proc/<TID>/status files for process %q", expectedProc)
    	}
    	return nil
    }
    
    // test1435 test 9 glibc implemented setuid/gid syscall functions are
    // mapped.  This test is a slightly more expansive test than that of
    // src/syscall/syscall_linux_test.go:TestSetuidEtc() insofar as it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 21:31:41 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top