From ca725049b343ef1e969c6faaa1c481ef5d7203b3 Mon Sep 17 00:00:00 2001 From: JanLJL Date: Fri, 30 Aug 2019 14:22:53 +0200 Subject: [PATCH] added base parser to all_tests --- tests/all_tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/all_tests.py b/tests/all_tests.py index 374a8be..dbf9980 100755 --- a/tests/all_tests.py +++ b/tests/all_tests.py @@ -6,6 +6,7 @@ import unittest sys.path[0:0] = ['.', '..'] suite = unittest.TestLoader().loadTestsFromNames( [ + 'test_base_parser', 'test_parser_x86att', 'test_parser_AArch64v81', 'test_marker_utils',