Skip to content

Commit

Permalink
Attempt to fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
jansorg committed Dec 27, 2024
1 parent bcd0db1 commit 0a451cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions test/example/interrupt.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ if [ '@top_builddir@' = '' ] ; then
echo "Something is wrong top_builddir is not set."
exit 1
fi
top_builddir=@top_builddir@
top_builddir=${top_builddir%%/}/
source ${top_builddir}bashdb-trace --no-init -q -B -L @top_builddir@
top_builddir="@top_builddir@"
top_builddir="${top_builddir%%/}/"
source "${top_builddir}bashdb-trace" --no-init -q -B -L "@top_builddir@"

## FIXME
## _Dbg_handler INT
Expand Down
2 changes: 1 addition & 1 deletion test/integration/interrupt.tests
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ while [[ ! -f $started_markerfile ]] ; do
sleep 1
done

kill -TERM %1
builtin kill -TERM %1
while [[ ! -s $CHECK_FILE ]] ; do
sleep 1
done
Expand Down

0 comments on commit 0a451cb

Please sign in to comment.