Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for testSyntaxErrors (0.33 sec)

  1. src/cmd/compile/internal/syntax/error_test.go

    	}
    }
    
    func TestSyntaxErrors(t *testing.T) {
    	testenv.MustHaveGoBuild(t) // we need access to source (testdata)
    
    	list, err := os.ReadDir(testdata)
    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, fi := range list {
    		name := fi.Name()
    		if !fi.IsDir() && !strings.HasPrefix(name, ".") {
    			testSyntaxErrors(t, filepath.Join(testdata, name))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top