summaryrefslogtreecommitdiff
path: root/src/pkg/path/match_test.go
AgeCommit message (Collapse)AuthorFilesLines
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-50/+78
2010-02-25path: Fix bug in Match with non-greedy starsKevin Ballard1-0/+1
path.Match() errors out when testing "*x" against "xxx" because it matches the star non-greedily. Ensure that the last chunk consumes the rest of the name. R=r, rsc CC=golang-dev http://codereview.appspot.com/223050 Committer: Russ Cox <rsc@golang.org>
2010-02-24path: add MatchRuss Cox1-0/+76
R=eridius, r, rog CC=golang-dev http://codereview.appspot.com/217088