aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite-decryption.sh
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-05-10 14:16:14 -0700
committerGuy Harris <guy@alum.mit.edu>2015-05-10 21:18:53 +0000
commit42611db19ae539799de2a66fc53edecfdf9a27a9 (patch)
treed0ac095eb9a2adaf63f4343cd6d95b876d76b4d9 /test/suite-decryption.sh
parent040641dc598b4d4873171a6700e202f5e8b8c318 (diff)
Try wrapping some tshark invocations in a script to catch crashes.
Add a script that takes a command as an argument and runs it in a subshell, so that said subshell will catch any signals from it and report it. This would be done for commands that aren't the last command in the pipeline, as, given that the exit status of a pipeline is the exit status of the last command in the pipeline, there's no guarantee that the shell will bother to pick up the exit status of earlier commands in the pipeline. Use that for the tshark in the WPA EAPOL Rekey test, so it at least can report the signal (on Solaris, SIGSEGV means, among other things, "dereferenced a pointer pointing out of the address space" and SIGBUS means, among other things, "dereferenced a misaligned pointer on SPARC"). Maybe we can make the script also fire up a debugger if it finds a core dump (and a debugger) and get a stack trace. Change-Id: I4188190a1f1a4d3afc4719d886161ee56bd89d8b Reviewed-on: https://code.wireshark.org/review/8392 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'test/suite-decryption.sh')
-rwxr-xr-xtest/suite-decryption.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/suite-decryption.sh b/test/suite-decryption.sh
index 86931676b1..253c685117 100755
--- a/test/suite-decryption.sh
+++ b/test/suite-decryption.sh
@@ -77,7 +77,7 @@ decryption_step_80211_wpa_psk() {
# WPA EAP (EAPOL Rekey)
# Included in git sources test/captures/wpa-eap-tls.pcap.gz
decryption_step_80211_wpa_eap() {
- env $TS_DC_ENV $TSHARK $TS_DC_ARGS \
+ ./run_and_catch_crashes env $TS_DC_ENV $TSHARK $TS_DC_ARGS \
-o "wlan.enable_decryption: TRUE" \
-r "$CAPTURE_DIR/wpa-eap-tls.pcap.gz" \
-Y "wlan.analysis.tk==7d9987daf5876249b6c773bf454a0da7" \