Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test42018 (0.09 sec)

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

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !windows
    
    package cgotest
    
    import "testing"
    
    func test42018(t *testing.T) {
    	t.Skip("skipping Windows-only test")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 287 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue42018_windows.go

    package cgotest
    
    /*
    typedef void *HANDLE;
    
    struct HWND__{int unused;}; typedef struct HWND__ *HWND;
    */
    import "C"
    
    import (
    	"testing"
    	"unsafe"
    )
    
    func test42018(t *testing.T) {
    	// Test that Windows handles are marked go:notinheap, by growing the
    	// stack and checking for pointer adjustments. Trick from
    	// test/fixedbugs/issue40954.go.
    	var i int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/cgo_test.go

    func Test30065(t *testing.T)                 { test30065(t) }
    func Test32579(t *testing.T)                 { test32579(t) }
    func Test31891(t *testing.T)                 { test31891(t) }
    func Test42018(t *testing.T)                 { test42018(t) }
    func Test45451(t *testing.T)                 { test45451(t) }
    func Test49633(t *testing.T)                 { test49633(t) }
    func TestAlign(t *testing.T)                 { testAlign(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)
Back to top