Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
543acc97
Commit
543acc97
authored
Mar 23, 2011
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
testing: add -test.cpuprofile flag
R=r CC=golang-dev
https://golang.org/cl/4272066
parent
14b9032f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
17 deletions
+39
-17
gotest
src/cmd/gotest/gotest
+1
-2
gopprof
src/cmd/prof/gopprof
+3
-2
testing.go
src/pkg/testing/testing.go
+35
-13
No files found.
src/cmd/gotest/gotest
View file @
543acc97
...
...
@@ -203,8 +203,7 @@ func matchString(pat, str string) (result bool, err __os__.Error) {
}
func main() {
testing.Main(matchString, tests)
testing.RunBenchmarks(matchString, benchmarks)
testing.Main(matchString, tests, benchmarks)
}'
}>
_testmain.go
...
...
src/cmd/prof/gopprof
View file @
543acc97
...
...
@@ -2476,7 +2476,8 @@ sub RemoveUninterestingFrames {
# Nothing skipped for unknown types
}
if ($main::profile_type eq 'cpu') {
# Go doesn't have the problem that this heuristic tries to fix. Disable.
if (0 && $main::profile_type eq 'cpu') {
# If all the second-youngest program counters are the same,
# this STRONGLY suggests that it is an artifact of measurement,
# i.e., stack frames pushed by the CPU profiler signal handler.
...
...
@@ -2976,7 +2977,7 @@ sub FetchDynamicProfile {
$url = sprintf("http://$profile_name" . "seconds=%d",
$main::opt_seconds);
}
$curl_timeout = sprintf("--max-time
=
%d",
$curl_timeout = sprintf("--max-time
%d",
int($main::opt_seconds * 1.01 + 60));
} else {
# For non-CPU profiles, we add a type-extension to
...
...
src/pkg/testing/testing.go
View file @
543acc97
...
...
@@ -51,8 +51,9 @@ var (
// Report as tests are run; default is silent for success.
chatty
=
flag
.
Bool
(
"test.v"
,
false
,
"verbose: print additional output"
)
match
=
flag
.
String
(
"test.run"
,
""
,
"regular expression to select tests to run"
)
memProfile
=
flag
.
String
(
"test.memprofile"
,
""
,
"
after execution write the memory profile to the named file
"
)
memProfile
=
flag
.
String
(
"test.memprofile"
,
""
,
"
write a memory profile to the named file after execution
"
)
memProfileRate
=
flag
.
Int
(
"test.memprofilerate"
,
0
,
"if >=0, sets runtime.MemProfileRate"
)
cpuProfile
=
flag
.
String
(
"test.cpuprofile"
,
""
,
"write a cpu profile to the named file during execution"
)
)
...
...
@@ -141,10 +142,16 @@ func tRunner(t *T, test *InternalTest) {
// An internal function but exported because it is cross-package; part of the implementation
// of gotest.
func
Main
(
matchString
func
(
pat
,
str
string
)
(
bool
,
os
.
Error
),
tests
[]
InternalTest
)
{
func
Main
(
matchString
func
(
pat
,
str
string
)
(
bool
,
os
.
Error
),
tests
[]
InternalTest
,
benchmarks
[]
InternalBenchmark
)
{
flag
.
Parse
()
before
()
RunTests
(
matchString
,
tests
)
RunBenchmarks
(
matchString
,
benchmarks
)
after
()
}
func
RunTests
(
matchString
func
(
pat
,
str
string
)
(
bool
,
os
.
Error
),
tests
[]
InternalTest
)
{
ok
:=
true
if
len
(
tests
)
==
0
{
println
(
"testing: warning: no tests to run"
)
...
...
@@ -177,7 +184,6 @@ func Main(matchString func(pat, str string) (bool, os.Error), tests []InternalTe
print
(
t
.
errors
)
}
}
after
()
if
!
ok
{
println
(
"FAIL"
)
os
.
Exit
(
1
)
...
...
@@ -190,20 +196,36 @@ func before() {
if
*
memProfileRate
>
0
{
runtime
.
MemProfileRate
=
*
memProfileRate
}
if
*
cpuProfile
!=
""
{
f
,
err
:=
os
.
Open
(
*
cpuProfile
,
os
.
O_WRONLY
|
os
.
O_CREAT
|
os
.
O_TRUNC
,
0666
)
if
err
!=
nil
{
fmt
.
Fprintf
(
os
.
Stderr
,
"testing: %s"
,
err
)
return
}
if
err
:=
pprof
.
StartCPUProfile
(
f
);
err
!=
nil
{
fmt
.
Fprintf
(
os
.
Stderr
,
"testing: can't start cpu profile: %s"
,
err
)
f
.
Close
()
return
}
// Could save f so after can call f.Close; not worth the effort.
}
}
// after runs after all testing.
func
after
()
{
if
*
memProfile
==
""
{
return
}
fd
,
err
:=
os
.
Open
(
*
memProfile
,
os
.
O_WRONLY
|
os
.
O_CREAT
|
os
.
O_TRUNC
,
0666
)
if
err
!=
nil
{
fmt
.
Fprintf
(
os
.
Stderr
,
"testing: can't open %s: %s"
,
*
memProfile
,
err
)
return
if
*
cpuProfile
!=
""
{
pprof
.
StopCPUProfile
()
// flushes profile to disk
}
if
err
=
pprof
.
WriteHeapProfile
(
fd
);
err
!=
nil
{
fmt
.
Fprintf
(
os
.
Stderr
,
"testing: can't write %s: %s"
,
*
memProfile
,
err
)
if
*
memProfile
!=
""
{
f
,
err
:=
os
.
Open
(
*
memProfile
,
os
.
O_WRONLY
|
os
.
O_CREAT
|
os
.
O_TRUNC
,
0666
)
if
err
!=
nil
{
fmt
.
Fprintf
(
os
.
Stderr
,
"testing: %s"
,
err
)
return
}
if
err
=
pprof
.
WriteHeapProfile
(
f
);
err
!=
nil
{
fmt
.
Fprintf
(
os
.
Stderr
,
"testing: can't write %s: %s"
,
*
memProfile
,
err
)
}
f
.
Close
()
}
fd
.
Close
()
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment