diff options
author | Petr Machata <petrm@mellanox.com> | 2018-07-28 00:48:13 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-07-29 13:00:01 -0700 |
commit | eef6ab8b7d3223e2ecd02a02f17523e93faba709 (patch) | |
tree | 8edd1138f473db6cb15f23de723bbaaea75ccb41 /tools | |
parent | 720516b17b9ef1d1e1770e6b86a8b0776d2d379c (diff) | |
download | linux-rpi3-eef6ab8b7d3223e2ecd02a02f17523e93faba709.tar.gz linux-rpi3-eef6ab8b7d3223e2ecd02a02f17523e93faba709.tar.bz2 linux-rpi3-eef6ab8b7d3223e2ecd02a02f17523e93faba709.zip |
selftests: mlxsw: qos_dscp_bridge: Fix
There are two problems in this test case:
- When indexing in bash associative array, the subscript is interpreted as
string, not as a variable name to be expanded.
- The keys stored to t0s and t1s are not DSCP values, but priority +
base (i.e. the logical DSCP value, not the full bitfield value).
In combination these two bugs conspire to make the test just work,
except it doesn't really test anything and always passes.
Fix the above two problems in obvious manner.
Signed-off-by: Petr Machata <petrm@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/testing/selftests/drivers/net/mlxsw/qos_dscp_bridge.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/selftests/drivers/net/mlxsw/qos_dscp_bridge.sh b/tools/testing/selftests/drivers/net/mlxsw/qos_dscp_bridge.sh index 418319f19108..cc527660a022 100755 --- a/tools/testing/selftests/drivers/net/mlxsw/qos_dscp_bridge.sh +++ b/tools/testing/selftests/drivers/net/mlxsw/qos_dscp_bridge.sh @@ -217,13 +217,13 @@ dscp_ping_test() for key in ${!t0s[@]}; do local expect - if ((key == dscp_10 || key == dscp_20)); then + if ((key == prio+10 || key == prio+20)); then expect=10 else expect=0 fi - local delta=$((t1s[key] - t0s[key])) + local delta=$((t1s[$key] - t0s[$key])) ((expect == delta)) check_err $? "DSCP $key: Expected to capture $expect packets, got $delta." done |