Commit 8515a9f4 authored by Russ Cox's avatar Russ Cox

log test: don't assume a fixed set of letters for $GOROOT

Fixes #27.

R=r
https://golang.org/cl/152075
parent ed86d0e7
......@@ -18,7 +18,7 @@ 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;
Rlongfile = `.*/[A-Za-z0-9_\-]+\.go:` + Rline;
Rshortfile = `[A-Za-z0-9_\-]+\.go:` + Rline;
)
......
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