From 607a94900f882b78005a4af86a3f1cb1eff1581a Mon Sep 17 00:00:00 2001 From: "Addisu Z. Taddese" Date: Sat, 14 Oct 2023 00:29:13 -0500 Subject: [PATCH] Fix path Signed-off-by: Addisu Z. Taddese --- .../docker/lib/_generic_linux_compilation_build.sh.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins-scripts/docker/lib/_generic_linux_compilation_build.sh.bash b/jenkins-scripts/docker/lib/_generic_linux_compilation_build.sh.bash index 506694e5b..9a045a622 100644 --- a/jenkins-scripts/docker/lib/_generic_linux_compilation_build.sh.bash +++ b/jenkins-scripts/docker/lib/_generic_linux_compilation_build.sh.bash @@ -100,7 +100,7 @@ if $GENERIC_ENABLE_TESTS; then if [[ -d $WORKSPACE/core_dumps ]]; then for corefile in $WORKSPACE/core_dumps/core.* do - gdb --batch -ex "sharedlibrary; thread apply all bt" --core \$corefile | tee $WORKSPACE/core_dumps/\${corefile}_backtrace.txt + gdb --batch -ex "sharedlibrary; thread apply all bt" --core \$corefile | tee \${corefile}_backtrace.txt done fi stop_stopwatch TEST