aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite-wslua.sh
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-03-11 10:19:03 -0700
committerGraham Bloice <graham.bloice@trihedral.com>2015-03-12 10:44:14 +0000
commit95ce3928de8c08934ab7ba49492b319cbdb0c9f9 (patch)
tree1483f9a4b180062b3d8dfe489ccdb29742e9e7bf /test/suite-wslua.sh
parent8e709fca69dcd485192ff164662095e1e6f0c5c6 (diff)
Fix the Lua FPM dissector test.
In the FPM dissector test, only check the fields produced by the frame and FPM dissectors. Change-Id: I212afb8a8a4a7a9aa54391b0d5971b982b819395 Reviewed-on: https://code.wireshark.org/review/7643 Reviewed-by: Graham Bloice <graham.bloice@trihedral.com> Tested-by: Graham Bloice <graham.bloice@trihedral.com>
Diffstat (limited to 'test/suite-wslua.sh')
-rwxr-xr-xtest/suite-wslua.sh19
1 files changed, 15 insertions, 4 deletions
diff --git a/test/suite-wslua.sh b/test/suite-wslua.sh
index d45062427c..8608c2a0e6 100755
--- a/test/suite-wslua.sh
+++ b/test/suite-wslua.sh
@@ -100,8 +100,18 @@ wslua_step_dissector_test() {
return
fi
- # then run tshark again with the verification script. (it internally reads in testin.txt)
- $TSHARK -r $CAPTURE_DIR/segmented_fpm.pcap -X lua_script:$TESTS_DIR/lua/dissectFPM.lua -o fpm.dissect_tcp:true -V > testin.txt 2>&1
+ FPM_ARGS="
+ -r $CAPTURE_DIR/segmented_fpm.pcap
+ -X lua_script:$TESTS_DIR/lua/dissectFPM.lua
+ -T fields
+ -e frame.number
+ -e fpm
+ -e fpm.version
+ -e fpm.type
+ -e fpm.length
+ "
+ # run tshark with the FPM dissector script, enabling dissect_tcp_pdus().
+ $TSHARK $FPM_ARGS -o fpm.dissect_tcp:true > testin.txt 2>&1
RETURNVALUE=$?
if [ ! $RETURNVALUE -eq $EXIT_OK ]; then
echo
@@ -110,7 +120,8 @@ wslua_step_dissector_test() {
return
fi
- $TSHARK -r $CAPTURE_DIR/segmented_fpm.pcap -X lua_script:$TESTS_DIR/lua/dissectFPM.lua -o fpm.dissect_tcp:false -V > testout.txt 2>&1
+ # run tshark with the FPM dissector script, disabling dissect_tcp_pdus().
+ $TSHARK $FPM_ARGS -o fpm.dissect_tcp:false > testout.txt 2>&1
RETURNVALUE=$?
if [ ! $RETURNVALUE -eq $EXIT_OK ]; then
echo
@@ -480,7 +491,7 @@ wslua_suite() {
test_step_add "wslua tvb" wslua_step_tvb_test
}
#
-# Editor modelines - http://www.wireshark.org/tools/modelines.html
+# Editor modelines - https://www.wireshark.org/tools/modelines.html
#
# Local variables:
# c-basic-offset: 8