Files
infix/test
Tobias Waldekranz e4535aa856 test: infamy: Make it easier to resolve mapped port names
The somewhat clumsy construct of resolving a logical port name to its
physical counterpart has been with us from Infamy's inception:

    _, physical_port = env.ltop.xlate(logical_node, logical_port)

This is needlessly verbose. Since devices already have access to the
mappings which applies to it, make them easy to access:

    target = env.attach("target")

    # Get physical port names via the subscript operator
    target["data0"]
2025-01-08 10:14:46 +01:00
..
2025-01-07 15:33:37 +01:00
2024-09-30 13:11:59 +02:00
2024-11-25 14:44:32 +01:00
2024-04-15 15:36:41 +02:00
2024-05-20 16:21:06 +02:00