Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for runImporterTest (0.12 sec)

  1. src/go/internal/gccgoimporter/importer_test.go

    			t.Logf("%s", out)
    			t.Fatalf("gccgo %s failed: %s", gofile, err)
    		}
    
    		runImporterTest(t, imp, initmap, &test)
    
    		cmd = testenv.Command(t, "ar", "cr", afile, ofile)
    		out, err = cmd.CombinedOutput()
    		if err != nil {
    			t.Logf("%s", out)
    			t.Fatalf("ar cr %s %s failed: %s", afile, ofile, err)
    		}
    
    		runImporterTest(t, arimp, arinitmap, &test)
    
    		if err = os.Remove(ofile); err != nil {
    			t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:17:57 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/gccgoinstallation_test.go

    		{pkgpath: "sort", name: "Search", want: "func Search(n int, f func(int) bool) int"},
    		{pkgpath: "unsafe", name: "Pointer", want: "type Pointer"},
    	} {
    		runImporterTest(t, imp, nil, &test)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 21 02:25:41 UTC 2021
    - 4K bytes
    - Viewed (0)
Back to top