vty tests: allow picking specific tests to run by name

Depends: osmo-python-tests change-id I92f90c334169f31920c63dd5c5ac8dac215065e6
Change-Id: I849455e0423e1a63d6890aef7f9c6075ad53a920
This commit is contained in:
Neels Hofmeyr 2017-02-28 02:43:29 +01:00
parent 83f6a7b640
commit b21619e7a9
1 changed files with 5 additions and 0 deletions

View File

@ -1340,6 +1340,7 @@ if __name__ == '__main__':
help="searchpath for config")
parser.add_argument("-w", "--workdir", dest="w",
help="Working directory")
parser.add_argument("test_name", nargs="*", help="(parts of) test names to run, case-insensitive")
args = parser.parse_args()
verbose_level = 1
@ -1362,6 +1363,10 @@ if __name__ == '__main__':
add_nat_test(suite, workdir)
add_gbproxy_test(suite, workdir)
add_sgsn_test(suite, workdir)
if args.test_name:
osmoutil.pick_tests(suite, *args.test_name)
res = unittest.TextTestRunner(verbosity=verbose_level, stream=sys.stdout).run(suite)
sys.exit(len(res.errors) + len(res.failures))