1
0
mirror of https://github.com/golang/go synced 2024-10-03 16:41:28 -06:00

Hyphens are allowed in filenames. This allows this test to pass for me.

R=r
APPROVED=r
DELTA=2  (0 added, 0 deleted, 2 changed)
OCL=28847
CL=28851
This commit is contained in:
David Symonds 2009-05-14 15:42:27 -07:00
parent 80b5482ab2
commit 16387fad39

View File

@ -19,8 +19,8 @@ const (
Rtime = `[0-9][0-9]:[0-9][0-9]:[0-9][0-9]`;
Rmicroseconds = `\.[0-9][0-9][0-9][0-9][0-9][0-9]`;
Rline = `[0-9]+:`;
Rlongfile = `/[A-Za-z0-9_/]+\.go:` + Rline;
Rshortfile = `[A-Za-z0-9_]+\.go:` + Rline;
Rlongfile = `/[A-Za-z0-9_/\-]+\.go:` + Rline;
Rshortfile = `[A-Za-z0-9_\-]+\.go:` + Rline;
)
type tester struct {