From: Marcel van Lohuizen Date: Mon, 31 Oct 2011 09:58:04 +0000 (+0100) Subject: exp/norm: fixed bug that creeped in with moving to the new X-Git-Tag: weekly.2011-11-01~25 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=eef78091932aafec2b8030bc1927699b551d119b;p=gostls13.git exp/norm: fixed bug that creeped in with moving to the new regexp, which caused the last line of a test block to be ignored. R=r, rsc CC=golang-dev https://golang.org/cl/5177052 --- diff --git a/src/pkg/exp/norm/maketables.go b/src/pkg/exp/norm/maketables.go index 626f324a54..93edf221ef 100644 --- a/src/pkg/exp/norm/maketables.go +++ b/src/pkg/exp/norm/maketables.go @@ -764,7 +764,7 @@ func verifyComputed() { } } -var qcRe = regexp.MustCompile(`^([0-9A-F\.]+) *; (NF.*_QC); ([YNM]) #.*$`) +var qcRe = regexp.MustCompile(`([0-9A-F\.]+) *; (NF.*_QC); ([YNM]) #.*`) // Use values in DerivedNormalizationProps.txt to compare against the // values we computed.