summaryrefslogtreecommitdiffhomepage
path: root/runsc/main.go
diff options
context:
space:
mode:
authorAndrei Vagin <avagin@google.com>2019-08-13 11:54:59 -0700
committergVisor bot <gvisor-bot@google.com>2019-08-13 11:56:29 -0700
commit8d97b22aa8e565ff05c5e9209f13d2394e9706c8 (patch)
tree560454cee4e8aa2ee3d948d5e381f61765fe68a0 /runsc/main.go
parentfa3d0e6f63d6ecc9a6566ec80e4a8c7519c6cf76 (diff)
tests: print stack traces if test failed by timeout
PiperOrigin-RevId: 263184083
Diffstat (limited to 'runsc/main.go')
-rw-r--r--runsc/main.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/runsc/main.go b/runsc/main.go
index 5823819f4..e864118b2 100644
--- a/runsc/main.go
+++ b/runsc/main.go
@@ -22,6 +22,7 @@ import (
"io"
"io/ioutil"
"os"
+ "os/signal"
"path/filepath"
"strings"
"syscall"
@@ -116,6 +117,13 @@ func main() {
// All subcommands must be registered before flag parsing.
flag.Parse()
+ if *testOnlyAllowRunAsCurrentUserWithoutChroot {
+ // SIGTERM is sent to all processes if a test exceeds its
+ // timeout and this case is handled by syscall_test_runner.
+ log.Warningf("Block the TERM signal. This is only safe in tests!")
+ signal.Ignore(syscall.SIGTERM)
+ }
+
// Are we showing the version?
if *showVersion {
// The format here is the same as runc.