Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for mm (0.11 sec)

  1. src/cmd/asm/internal/asm/endtoend_test.go

    		if m := errRE.FindStringSubmatch(line); m != nil {
    			all := m[1]
    			mm := errQuotesRE.FindAllStringSubmatch(all, -1)
    			if len(mm) != 1 {
    				t.Errorf("%s: invalid errorcheck line:\n%s", fileline, line)
    			} else if err := errors[fileline]; err == "" {
    				t.Errorf("%s: missing error, want %s", fileline, all)
    			} else if !strings.Contains(err, mm[0][1]) {
    				t.Errorf("%s: wrong error for %s:\n%s", fileline, all, err)
    			}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Dec 07 18:42:59 GMT 2023
    - 11.6K bytes
    - Viewed (0)
Back to top