Skip to content
Snippets Groups Projects
Commit fd3d965d authored by Philipp Spilger's avatar Philipp Spilger
Browse files

Allow use of libnux hwsimtest runner outside of libnux

* requires to not always add the special case'd tests from libnux
  to the testset

Change-Id: I3677e910540f772642d85fdb4d6df3f48b3945bc
parent 00c600b5
No related branches found
Tags ebrains-4.0-a1
No related merge requests found
......@@ -87,7 +87,8 @@ class LibnuxHwSimTestsVx(unittest.TestCase):
setattr(LibnuxHwSimTestsVx, test.name, test_method)
LibnuxHwSimTestsVx.TESTS.update(get_special_binaries("vx", "v2"))
LibnuxHwSimTestsVx.TESTS.update(
get_special_binaries("vx", "v2").intersection(find_binaries("vx", "v2")))
LibnuxHwSimTestsVx.TESTS.update(find_binaries("vx", "v2"))
LibnuxHwSimTestsVx.generate_cases()
......
......@@ -87,7 +87,8 @@ class LibnuxHwSimTestsVx(unittest.TestCase):
setattr(LibnuxHwSimTestsVx, test.name, test_method)
LibnuxHwSimTestsVx.TESTS.update(get_special_binaries("vx", "v3"))
LibnuxHwSimTestsVx.TESTS.update(
get_special_binaries("vx", "v3").intersection(find_binaries("vx", "v3")))
LibnuxHwSimTestsVx.TESTS.update(find_binaries("vx", "v3"))
LibnuxHwSimTestsVx.generate_cases()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment