diff options
author | Michael Tüxen <tuexen@fh-muenster.de> | 2011-07-21 16:06:52 +0000 |
---|---|---|
committer | Michael Tüxen <tuexen@fh-muenster.de> | 2011-07-21 16:06:52 +0000 |
commit | 77022a66b07b14af6cddebba0d43d2cd93c4a32a (patch) | |
tree | 3ba415f9a5d66887df7515f35a3a3ec25bb16e73 /test | |
parent | f30c3675ec3c26408ddaba671fe6fece9234f123 (diff) | |
download | wireshark-77022a66b07b14af6cddebba0d43d2cd93c4a32a.tar.gz wireshark-77022a66b07b14af6cddebba0d43d2cd93c4a32a.tar.bz2 wireshark-77022a66b07b14af6cddebba0d43d2cd93c4a32a.zip |
Adopt test to new error handling.
svn path=/trunk/; revision=38145
Diffstat (limited to 'test')
-rwxr-xr-x | test/suite-clopts.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/suite-clopts.sh b/test/suite-clopts.sh index dc8107a991..015e0e995b 100755 --- a/test/suite-clopts.sh +++ b/test/suite-clopts.sh @@ -134,7 +134,7 @@ clopts_step_invalid_interface() { if [ ! $RETURNVALUE -eq $EXIT_COMMAND_LINE ]; then test_step_failed "exit status: $RETURNVALUE" else - grep -i 'The capture session could not be initiated' ./testout.txt > /dev/null + grep -i 'there is no interface with that name' ./testout.txt > /dev/null if [ $? -eq 0 ]; then test_step_output_print ./testout.txt test_step_ok |