We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcd0db1 commit 0a451cbCopy full SHA for 0a451cb
test/example/interrupt.sh.in
@@ -15,9 +15,9 @@ if [ '@top_builddir@' = '' ] ; then
15
echo "Something is wrong top_builddir is not set."
16
exit 1
17
fi
18
-top_builddir=@top_builddir@
19
-top_builddir=${top_builddir%%/}/
20
-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@"
21
22
## FIXME
23
## _Dbg_handler INT
test/integration/interrupt.tests
@@ -15,7 +15,7 @@ while [[ ! -f $started_markerfile ]] ; do
sleep 1
done
-kill -TERM %1
+builtin kill -TERM %1
while [[ ! -s $CHECK_FILE ]] ; do
0 commit comments