Commit 16387fad authored by David Symonds's avatar David Symonds

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
parent 80b5482a
......@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment