.. | .. |
---|
1 | 1 | #!/bin/bash |
---|
2 | 2 | # SPDX-License-Identifier: GPL-2.0 |
---|
3 | 3 | |
---|
| 4 | +lib_dir=$(dirname $0)/../../../../net/forwarding |
---|
| 5 | + |
---|
4 | 6 | NUM_NETIFS=6 |
---|
5 | | -source ../../../../net/forwarding/lib.sh |
---|
6 | | -source ../../../../net/forwarding/tc_common.sh |
---|
| 7 | +source $lib_dir/lib.sh |
---|
| 8 | +source $lib_dir/tc_common.sh |
---|
7 | 9 | source devlink_lib_spectrum.sh |
---|
8 | 10 | |
---|
9 | 11 | current_test="" |
---|
.. | .. |
---|
20 | 22 | devlink_sp_read_kvd_defaults |
---|
21 | 23 | trap cleanup EXIT |
---|
22 | 24 | |
---|
23 | | -ALL_TESTS="router tc_flower mirror_gre" |
---|
| 25 | +ALL_TESTS="router tc_flower mirror_gre tc_police" |
---|
24 | 26 | for current_test in ${TESTS:-$ALL_TESTS}; do |
---|
25 | 27 | source ${current_test}_scale.sh |
---|
26 | 28 | |
---|