Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for issue59563 (0.14 sec)

  1. src/internal/coverage/cfile/emitdata_test.go

    	tmpdir := t.TempDir()
    	ppath := filepath.Join(tmpdir, "foo.cov")
    
    	cmd := exec.Command(testenv.GoToolPath(t), "test", "-coverpkg=all", "-coverprofile="+ppath)
    	cmd.Dir = filepath.Join("testdata", "issue59563")
    	b, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("go test -cover failed: %v\n%s", err, b)
    	}
    
    	cmd = exec.Command(testenv.GoToolPath(t), "tool", "cover", "-func="+ppath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. test/fixedbugs/issue5963.go

    created by runtime.main
    	/Users/rsc/g/go/src/pkg/runtime/proc.c:165
    
    goroutine 3 [runnable]:
    main.funcĀ·002()
    	/Users/rsc/g/go/test/fixedbugs/issue5963.go:22
    created by main.initĀ·1
    	/Users/rsc/g/go/test/fixedbugs/issue5963.go:24 +0xb9
    exit status 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 929 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue29563.go

    //go:build cgo && !windows
    
    // Issue 29563: internal linker fails on duplicate weak symbols.
    // No runtime test; just make sure it compiles.
    
    package cgotest
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 363 bytes
    - Viewed (0)
  4. test/fixedbugs/issue5856.go

    var x = 1
    
    func f() {
    	if x == 0 {
    		return
    	}
    	defer g()
    	panic("panic")
    }
    
    func g() {
    	_, file, line, _ := runtime.Caller(2)
    	if !strings.HasSuffix(file, "issue5856.go") || line != 28 {
    		fmt.Printf("BUG: defer called from %s:%d, want issue5856.go:28\n", file, line)
    		os.Exit(1)
    	}
    	os.Exit(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 28 20:55:36 UTC 2018
    - 586 bytes
    - Viewed (0)
  5. test/fixedbugs/issue58563.go

    Matthew Dempsky <******@****.***> 1677014182 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 20:26:10 UTC 2023
    - 191 bytes
    - Viewed (0)
  6. test/fixedbugs/issue29562.go

    David Chase <******@****.***> 1546620203 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 04 21:51:37 UTC 2019
    - 449 bytes
    - Viewed (0)
  7. test/fixedbugs/issue53653.go

    Keith Randall <******@****.***> 1656785275 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 06 17:00:37 UTC 2022
    - 659 bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue59639.go

    Robert Griesemer <******@****.***> 1683176727 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 17:35:44 UTC 2023
    - 297 bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue63563.go

    Robert Griesemer <******@****.***> 1698699064 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue59367.go

    Keith Randall <******@****.***> 1680370406 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 21:11:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top