diff options
author | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-12 15:27:42 +0000 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-12 15:29:16 +0000 |
commit | 650f9fca1ca599819bcc5be191280d3029535e11 (patch) | |
tree | 24300bd031e007bd488c60401d70ba97fb67044c /community/wireshark | |
parent | 63c3a6d2a03129caa474cf961b963793ca72bb9a (diff) | |
download | aports-650f9fca1ca599819bcc5be191280d3029535e11.tar.bz2 aports-650f9fca1ca599819bcc5be191280d3029535e11.tar.xz |
community/wireshark: disable failing tests
Some tests are failing on certain arches. These failing tests have been
reported upstream. Disable them for now until they are fixed.
See:
* https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=15771
* https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=15772
Diffstat (limited to 'community/wireshark')
-rw-r--r-- | community/wireshark/APKBUILD | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/community/wireshark/APKBUILD b/community/wireshark/APKBUILD index e940fa6151..ce639f10bd 100644 --- a/community/wireshark/APKBUILD +++ b/community/wireshark/APKBUILD @@ -189,7 +189,22 @@ build() { check() { make test-programs - pytest test/ + # Disabled tests 1, 2 fail on armhf + # See: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=15771 + # Disabled tests 3-10 fail on s390x + # See: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=15772 + pytest test/ \ + --deselect suite_wslua.py::case_wslua.test_wslua_tvb_tree \ + --deselect suite_wslua.py::case_wslua.test_wslua_tvb_no_tree \ + --deselect suite_capture.py::case_dumpcap_pcapng_sections.test_dumpcap_pcapng_single_in_multi_out \ + --deselect suite_capture.py::case_dumpcap_pcapng_sections.test_dumpcap_pcapng_single_in_single_out \ + --deselect suite_capture.py::case_dumpcap_pcapng_sections.test_dumpcap_pcapng_multi_in_single_out \ + --deselect suite_capture.py::case_dumpcap_pcapng_sections.test_dumpcap_pcapng_multi_in_multi_out \ + --deselect suite_decryption.py::case_decrypt_smb2.test_smb311_bad_key \ + --deselect suite_decryption.py::case_decrypt_smb2.test_smb300_aes128ccm \ + --deselect suite_decryption.py::case_decrypt_smb2.test_smb300_bad_key \ + --deselect suite_decryption.py::case_decrypt_smb2.test_smb311_aes128ccm + } package() { |