We have custom test method libraries that support a couple different test method classes. For example:
- test93k.common.Functional
- test93kcustomext.common.Functional
Would I need to create different test method libraries in our test interface using the add_tml method or can they both exist in the same test method library? In the end, we need the correct class to show up in the generated flow as so:
testmethods
tm_jtag_regular:
testmethod_class = "test93k.common.Functional";
tm_jtag_extension:
testmethod_class = "test93kcustomext.common.Functional";
What controls the test that goes above?
regards
You can apply a
class_name:option to both the library and the individual tests, so you could try:There's a chance that the final name might end up with a leading
., though it should be a simple patch to make it inhibit that if the TML class name is blank.Defining them as two separate TMLs would definitely work too, and is probably how it should be handled:
See here for more - https://origen-sdk.org/origen/guides/program/v93k/#Custom_Test_Methods