Skip to content

Commit 0a451cb

Browse files
committed
Attempt to fix failing test
1 parent bcd0db1 commit 0a451cb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/example/interrupt.sh.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ if [ '@top_builddir@' = '' ] ; then
1515
echo "Something is wrong top_builddir is not set."
1616
exit 1
1717
fi
18-
top_builddir=@top_builddir@
19-
top_builddir=${top_builddir%%/}/
20-
source ${top_builddir}bashdb-trace --no-init -q -B -L @top_builddir@
18+
top_builddir="@top_builddir@"
19+
top_builddir="${top_builddir%%/}/"
20+
source "${top_builddir}bashdb-trace" --no-init -q -B -L "@top_builddir@"
2121

2222
## FIXME
2323
## _Dbg_handler INT

test/integration/interrupt.tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ while [[ ! -f $started_markerfile ]] ; do
1515
sleep 1
1616
done
1717

18-
kill -TERM %1
18+
builtin kill -TERM %1
1919
while [[ ! -s $CHECK_FILE ]] ; do
2020
sleep 1
2121
done

0 commit comments

Comments
 (0)