From 40f34f607655120ea93ebb547847964c5446e0dc Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Fri, 16 Apr 2021 17:44:35 -0400 Subject: [PATCH] chore: no gdb print on SIGUSR1 or SIGPIPE --- runtime/experiments/bash_libraries/framework.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/runtime/experiments/bash_libraries/framework.sh b/runtime/experiments/bash_libraries/framework.sh index 5ec283d..2821ed3 100644 --- a/runtime/experiments/bash_libraries/framework.sh +++ b/runtime/experiments/bash_libraries/framework.sh @@ -243,16 +243,16 @@ __framework_sh__run_debug() { if [[ "$project_directory" != "/sledge/runtime" ]]; then printf "It appears that you are not running in the container. Substituting path to match host environment\n" gdb \ - --eval-command="handle SIGUSR1 nostop" \ - --eval-command="handle SIGPIPE nostop" \ + --eval-command="handle SIGUSR1 noprint nostop" \ + --eval-command="handle SIGPIPE noprint nostop" \ --eval-command="set pagination off" \ --eval-command="set substitute-path /sledge/runtime $project_directory" \ --eval-command="run $__framework_sh__application_directory/spec.json" \ sledgert else gdb \ - --eval-command="handle SIGUSR1 nostop" \ - --eval-command="handle SIGPIPE nostop" \ + --eval-command="handle SIGUSR1 noprint nostop" \ + --eval-command="handle SIGPIPE noprint nostop" \ --eval-command="set pagination off" \ --eval-command="run $__framework_sh__application_directory/spec.json" \ sledgert