-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Copyright 2019 The Go Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
|
||
// invoke signal hander in the VDSO context | ||
// see issue 32912 | ||
|
||
package runtime_test | ||
|
||
import ( | ||
"fmt" | ||
"io/ioutil" | ||
"os" | ||
"runtime/pprof" | ||
"time" | ||
"testing" | ||
) | ||
|
||
func TestVDSO(t *testing.T) { | ||
f, err := ioutil.TempFile("", "timeprofnow") | ||
if err != nil { | ||
fmt.Fprintln(os.Stderr, err) | ||
os.Exit(2) | ||
} | ||
if err := pprof.StartCPUProfile(f); err != nil { | ||
fmt.Fprintln(os.Stderr, err) | ||
os.Exit(2) | ||
} | ||
t0 := time.Now() | ||
t1 := t0 | ||
// We should get a profiling signal 100 times a second, | ||
// so running for 10 seconds should be sufficient. | ||
for t1.Sub(t0) < 10*time.Second { | ||
t1 = time.Now() | ||
} | ||
pprof.StopCPUProfile() | ||
name := f.Name() | ||
if err := f.Close(); err != nil { | ||
fmt.Fprintln(os.Stderr, err) | ||
os.Exit(2) | ||
} | ||
if err := os.Remove(name); err != nil { | ||
fmt.Fprintln(os.Stderr, err) | ||
os.Exit(2) | ||
} | ||
} |