summaryrefslogtreecommitdiff
path: root/regress/agent-ptrace.sh
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2003-09-12 11:20:32 -0700
committerTim Rice <tim@multitalents.net>2003-09-12 11:20:32 -0700
commitb7efb630f66f0723a1f06c0e9178fa7c03bfec7b (patch)
tree84d2bdf7270a9d596332763f322f0e5a009f4c4b /regress/agent-ptrace.sh
parent23ee359b08fbdacc546ab84414eb9c63b6a2005d (diff)
[regress/agent-ptrace.sh] sh doesn't like "if ! shell_function; then".
Diffstat (limited to 'regress/agent-ptrace.sh')
-rw-r--r--regress/agent-ptrace.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/regress/agent-ptrace.sh b/regress/agent-ptrace.sh
index b9d86a29d..cd9c0023d 100644
--- a/regress/agent-ptrace.sh
+++ b/regress/agent-ptrace.sh
@@ -12,7 +12,9 @@ if have_prog uname ; then
12 esac 12 esac
13fi 13fi
14 14
15if ! have_prog gdb ; then 15if have_prog gdb ; then
16 : ok
17else
16 echo "skipped (gdb not found)" 18 echo "skipped (gdb not found)"
17 exit 0 19 exit 0
18fi 20fi