Skip to content

Commit

Permalink
add test case for golang#32912
Browse files Browse the repository at this point in the history
  • Loading branch information
nyuichi committed Sep 6, 2019
1 parent aae0b5b commit 5d04e76
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/runtime/crash_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,14 @@ func buildTestProg(t *testing.T, binary string, flags ...string) (string, error)
return exe, nil
}

func TestVDSO(t *testing.T) {
output := runTestProg(t, "testprog", "SignalInVDSO")
want := "success\n"
if output != want {
t.Fatalf("output:\n%s\n\nwanted:\n%s", output, want);
}
}

var (
staleRuntimeOnce sync.Once // guards init of staleRuntimeErr
staleRuntimeErr error
Expand Down
55 changes: 55 additions & 0 deletions src/runtime/testdata/testprog/vdso.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
// 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 main

import (
"fmt"
"io/ioutil"
"os"
"runtime/pprof"
"time"
)

func init() {
register("SignalInVDSO", signalInVDSO)
}

func signalInVDSO() {
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)
}

fmt.Println("success");
}

0 comments on commit 5d04e76

Please sign in to comment.