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)
downloadopenssh-git-b7efb630f66f0723a1f06c0e9178fa7c03bfec7b.tar.gz
[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 b9d86a29..cd9c0023 100644
--- a/regress/agent-ptrace.sh
+++ b/regress/agent-ptrace.sh
@@ -12,7 +12,9 @@ if have_prog uname ; then
esac
fi
-if ! have_prog gdb ; then
+if have_prog gdb ; then
+ : ok
+else
echo "skipped (gdb not found)"
exit 0
fi