aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2021-06-21 22:36:45 +0100
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-07-11 14:39:13 +0000
commit89acb935bcc0c4efdf13b22b49d0b0e4da5b31f3 (patch)
tree613dcf6a09bd08f16aabc21bbbedf03f158595c8 /test
parent396d5607448f589204b67589792d9c97c73ee4fb (diff)
wsutil: Start adding a test suite
Diffstat (limited to 'test')
-rw-r--r--test/suite_unittests.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/suite_unittests.py b/test/suite_unittests.py
index f333d1a0dc..ccffbd3806 100644
--- a/test/suite_unittests.py
+++ b/test/suite_unittests.py
@@ -41,6 +41,12 @@ class case_unittests(subprocesstest.SubprocessTestCase):
'--verbose'
), env=base_env)
+ def test_unit_wsutil(self, program, base_env):
+ '''wsutil unit tests'''
+ self.assertRun((program('test_wsutil'),
+ '--verbose'
+ ), env=base_env)
+
def test_unit_fieldcount(self, cmd_tshark, test_env):
'''fieldcount'''
self.assertRun((cmd_tshark, '-G', 'fieldcount'), env=test_env)