aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite-capture.sh
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2007-11-29 08:17:44 +0000
committerGuy Harris <guy@alum.mit.edu>2007-11-29 08:17:44 +0000
commit503a02879c8e93a0c65fc8f2935d358faf84beaa (patch)
tree4a7b7591b1db703cabd35ccccdec4989e374328c /test/suite-capture.sh
parenta5ca7ec3848a18fb25834774e87a8e5e84a78d0f (diff)
Is ping not installed on the Solaris buildbot, or does the path of the
script not include /usr/sbin, or is ping installed somewhere other than where it is on my Solaris "machine"? Try explicitly running it as /usr/sbin/ping on Solaris. svn path=/trunk/; revision=23670
Diffstat (limited to 'test/suite-capture.sh')
-rwxr-xr-xtest/suite-capture.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/suite-capture.sh b/test/suite-capture.sh
index 9f9ee86899..e9df472099 100755
--- a/test/suite-capture.sh
+++ b/test/suite-capture.sh
@@ -52,7 +52,7 @@ traffic_gen_ping() {
Windows)
ping -n 1 -l $x www.wireshark.org ;;
SunOS)
- ping www.wireshark.org $x 1 ;;
+ /usr/sbin/ping www.wireshark.org $x 1 ;;
*) # *BSD, Linux
ping -c 1 -s $x www.wireshark.org ;;
esac