Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for tf (0.02 sec)

  1. src/cmd/go/testdata/script/cover_asm.txt

    # Test cover for a package that has an assembly function.
    
    go test -outputdir=$WORK -coverprofile=cover.out coverasm
    go tool cover -func=$WORK/cover.out
    stdout '\tg\t*100.0%' # Check g is 100% covered.
    ! stdout '\tf\t*[0-9]' # Check for no coverage on the assembly function
    
    -- go.mod --
    module coverasm
    
    go 1.16
    -- p.go --
    package p
    
    func f()
    
    func g() {
    	println("g")
    }
    -- p.s --
    // empty asm file,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 604 bytes
    - Viewed (0)
Back to top