Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I am seeing the following error that I don't quite understand, must be something wrong with my handling of the list indexes...:
`
DEBUG: TelnetControl: Executing: ip link del gphy.2
DEBUG: TelnetControl: Command returned 0
DEBUG: LocalControl: Executing: ip link del eth1.2
DEBUG: LocalControl: Command returned 0
DEBUG: TelnetControl: Executing: ip link del gphy.3
DEBUG: TelnetControl: Command returned 0
EE
ERROR: test_port_ping_vlan_all (tests.port.vlan.TestPingVlan)
Traceback (most recent call last):
File "/home/fainelli/dev/github/dsatest/dsatest/tests/port/vlan.py", line 39, in test_port_ping_vlan_all
host_vlan = link.host_if.vlan_interfaces[vid]
IndexError: list index out of range
======================================================================
ERROR: test_port_ping_vlan_all (tests.port.vlan.TestPingVlan)
Traceback (most recent call last):
File "/home/fainelli/dev/github/dsatest/dsatest/tests/port/vlan.py", line 30, in tearDown
link.target_if.del_vlan(vid)
File "/home/fainelli/dev/github/dsatest/dsatest/bench/interface.py", line 57, in del_vlan
self.vlan_interfaces.pop(vid)
IndexError: pop index out of range
Ran 1 test in 4.639s
FAILED (errors=2)
zsh: exit 2 sudo ./dsatest.sh -B ~/.dsatest/7278.cfg -t port_ping_vlan_all -vvv
`