Files
infix/test/infamy
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
..
2024-12-03 16:29:28 +01:00
2024-12-19 09:33:45 +01:00
2024-10-16 19:01:40 +02:00
2024-12-18 14:55:00 +01:00
2024-09-05 07:04:58 +02:00
2024-12-03 16:29:28 +01:00
2024-12-03 16:29:28 +01:00
2024-12-19 10:14:15 +01:00
2024-09-05 07:04:58 +02:00
2024-02-23 14:01:23 +01:00
2024-10-23 10:08:10 +02:00