diff options
author | Petr Machata <petrm@mellanox.com> | 2018-06-30 03:53:14 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-06-30 16:06:16 +0300 |
commit | 9136074d56419fc502efeea1c80b63af0e4da3e7 (patch) | |
tree | d0086289a563420a1ebb61331ca30ddb14b8f5fd /tools | |
parent | b973b78aaeae44d650f534b617a2b62e5a83327a (diff) | |
download | linux-9136074d56419fc502efeea1c80b63af0e4da3e7.tar.xz |
selftests: mlxsw: Add target for mirror-to-gretap test on spectrum
Add a wrapper around mlxsw/mirror_gre_scale.sh that parameterized number
of offloadable mirrors on Spectrum machines.
Signed-off-by: Petr Machata <petrm@mellanox.com>
Reviewed-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/drivers/net/mlxsw/spectrum/mirror_gre_scale.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/testing/selftests/drivers/net/mlxsw/spectrum/mirror_gre_scale.sh b/tools/testing/selftests/drivers/net/mlxsw/spectrum/mirror_gre_scale.sh new file mode 100644 index 000000000000..8d2186c7c62b --- /dev/null +++ b/tools/testing/selftests/drivers/net/mlxsw/spectrum/mirror_gre_scale.sh @@ -0,0 +1,13 @@ +# SPDX-License-Identifier: GPL-2.0 +source ../mirror_gre_scale.sh + +mirror_gre_get_target() +{ + local should_fail=$1; shift + + if ((! should_fail)); then + echo 3 + else + echo 4 + fi +} |