Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for line_str (0.17 sec)

  1. src/cmd/cgo/internal/testplugin/plugin_test.go

    	goCmd(t, "build", "-o", "issue18584.exe", "./issue18584/main.go")
    	run(t, "./issue18584.exe")
    }
    
    func TestIssue19418(t *testing.T) {
    	globalSkip(t)
    	goCmd(t, "build", "-buildmode=plugin", "-ldflags=-X main.Val=linkstr", "-o", "plugin.so", "./issue19418/plugin.go")
    	goCmd(t, "build", "-o", "issue19418.exe", "./issue19418/main.go")
    	run(t, "./issue19418.exe")
    }
    
    func TestIssue19529(t *testing.T) {
    	globalSkip(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    	if err != nil {
    		t.Fatalf("%s", err)
    	}
    
    	lineStr := ""
    	if line != 0 {
    		lineStr = fmt.Sprintf(" (from line %d)", line)
    	}
    	if diff := cmp.Diff(expected, result); diff != "" {
    		t.Errorf("rules do not match%s:\ndiff:\n%s\nfull result:\n```\n%s```", lineStr, diff, result)
    	}
    
    	if checkConsistency {
    		err = checkIPTablesRuleJumps(expected)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top