aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite_dissection.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite_dissection.py')
-rw-r--r--test/suite_dissection.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/suite_dissection.py b/test/suite_dissection.py
index 772b40f5ca..eac8529d03 100644
--- a/test/suite_dissection.py
+++ b/test/suite_dissection.py
@@ -13,6 +13,7 @@ import os.path
import subprocesstest
import unittest
import fixtures
+import sys
@fixtures.mark_usefixtures('test_env')
@fixtures.uses_fixtures
@@ -218,4 +219,6 @@ class case_decompress_smb2(subprocesstest.SubprocessTestCase):
self.extract_compressed_payload(cmd_tshark, capture_file, 2)
def test_smb311_read_lznt1(self, cmd_tshark, capture_file):
+ if sys.byteorder == 'big':
+ fixtures.skip('this test is supported on little endian only')
self.extract_compressed_payload(cmd_tshark, capture_file, 3)