Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Test1435 (0.14 sec)

  1. 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)
  2. 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)
  3. src/cmd/cgo/internal/test/cgo_test.go

    // These wrappers are here for gotest to find.
    
    func Test1328(t *testing.T)                  { test1328(t) }
    func Test1560(t *testing.T)                  { test1560(t) }
    func Test1635(t *testing.T)                  { test1635(t) }
    func Test3250(t *testing.T)                  { test3250(t) }
    func Test3729(t *testing.T)                  { test3729(t) }
    func Test3775(t *testing.T)                  { test3775(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)
  4. src/cmd/cgo/internal/test/test.go

    	if r3 != expected {
    		t.Errorf("got %d, want %d", r3, expected)
    	}
    }
    
    // issue 1222
    type AsyncEvent struct {
    	event C.struct_ibv_async_event
    }
    
    // issue 1635
    
    func test1635(t *testing.T) {
    	C.scatter()
    	if v := C.hola; v != 0 {
    		t.Fatalf("C.hola is %d, should be 0", v)
    	}
    	if v := C.testHola(); v != 0 {
    		t.Fatalf("C.testHola() is %d, should be 0", v)
    	}
    }
    
    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