Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestLargeText (0.41 sec)

  1. src/cmd/link/linkbig_test.go

    // successfully linked even when there are very large text
    // sections present.
    
    package main
    
    import (
    	"bytes"
    	"fmt"
    	"internal/buildcfg"
    	"internal/testenv"
    	"os"
    	"testing"
    )
    
    func TestLargeText(t *testing.T) {
    	if testing.Short() || (buildcfg.GOARCH != "ppc64le" && buildcfg.GOARCH != "ppc64" && buildcfg.GOARCH != "arm") {
    		t.Skipf("Skipping large text section test in short mode or on %s", buildcfg.GOARCH)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:14 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top