hc
2024-05-13 9d77db3c730780c8ef5ccd4b66403ff5675cfe4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/bash
# SPDX-License-Identifier: GPL-2.0
 
lib_dir=$(dirname $0)/../../../../net/forwarding
 
NUM_NETIFS=6
source $lib_dir/lib.sh
source $lib_dir/tc_common.sh
source $lib_dir/devlink_lib.sh
 
if [[ "$DEVLINK_VIDDID" != "15b3:cf6c" && \
   "$DEVLINK_VIDDID" != "15b3:cf70" ]]; then
   echo "SKIP: test is tailored for Mellanox Spectrum-2 and Spectrum-3"
   exit 1
fi
 
current_test=""
 
cleanup()
{
   pre_cleanup
   if [ ! -z $current_test ]; then
       ${current_test}_cleanup
   fi
   # Need to reload in order to avoid router abort.
   devlink_reload
}
 
trap cleanup EXIT
 
ALL_TESTS="router tc_flower mirror_gre tc_police"
for current_test in ${TESTS:-$ALL_TESTS}; do
   source ${current_test}_scale.sh
 
   num_netifs_var=${current_test^^}_NUM_NETIFS
   num_netifs=${!num_netifs_var:-$NUM_NETIFS}
 
   for should_fail in 0 1; do
       RET=0
       target=$(${current_test}_get_target "$should_fail")
       ${current_test}_setup_prepare
       setup_wait $num_netifs
       ${current_test}_test "$target" "$should_fail"
       ${current_test}_cleanup
       devlink_reload
       if [[ "$should_fail" -eq 0 ]]; then
           log_test "'$current_test' $target"
       else
           log_test "'$current_test' overflow $target"
       fi
   done
done
current_test=""
 
exit "$RET"