Skip to content

Commit 81573b1

Browse files
vkochan-plvdavem330
authored andcommitted
selftests/net/forwarding: add Makefile to install tests
Add missing Makefile for net/forwarding tests and include it to the targets list, otherwise forwarding tests are not installed in case of cross-compilation. Signed-off-by: Vadym Kochan <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 2f599ec commit 81573b1

File tree

2 files changed

+76
-0
lines changed

2 files changed

+76
-0
lines changed

tools/testing/selftests/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ TARGETS += memory-hotplug
3333
TARGETS += mount
3434
TARGETS += mqueue
3535
TARGETS += net
36+
TARGETS += net/forwarding
3637
TARGETS += net/mptcp
3738
TARGETS += netfilter
3839
TARGETS += networking/timestamping
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# SPDX-License-Identifier: GPL-2.0+ OR MIT
2+
3+
TEST_PROGS = bridge_igmp.sh \
4+
bridge_port_isolation.sh \
5+
bridge_sticky_fdb.sh \
6+
bridge_vlan_aware.sh \
7+
bridge_vlan_unaware.sh \
8+
devlink_lib.sh \
9+
ethtool_lib.sh \
10+
ethtool.sh \
11+
fib_offload_lib.sh \
12+
forwarding.config.sample \
13+
gre_inner_v4_multipath.sh \
14+
gre_inner_v6_multipath.sh \
15+
gre_multipath.sh \
16+
ip6gre_inner_v4_multipath.sh \
17+
ip6gre_inner_v6_multipath.sh \
18+
ipip_flat_gre_key.sh \
19+
ipip_flat_gre_keys.sh \
20+
ipip_flat_gre.sh \
21+
ipip_hier_gre_key.sh \
22+
ipip_hier_gre_keys.sh \
23+
ipip_hier_gre.sh \
24+
ipip_lib.sh \
25+
lib.sh \
26+
loopback.sh \
27+
mirror_gre_bound.sh \
28+
mirror_gre_bridge_1d.sh \
29+
mirror_gre_bridge_1d_vlan.sh \
30+
mirror_gre_bridge_1q_lag.sh \
31+
mirror_gre_bridge_1q.sh \
32+
mirror_gre_changes.sh \
33+
mirror_gre_flower.sh \
34+
mirror_gre_lag_lacp.sh \
35+
mirror_gre_lib.sh \
36+
mirror_gre_neigh.sh \
37+
mirror_gre_nh.sh \
38+
mirror_gre.sh \
39+
mirror_gre_topo_lib.sh \
40+
mirror_gre_vlan_bridge_1q.sh \
41+
mirror_gre_vlan.sh \
42+
mirror_lib.sh \
43+
mirror_topo_lib.sh \
44+
mirror_vlan.sh \
45+
router_bridge.sh \
46+
router_bridge_vlan.sh \
47+
router_broadcast.sh \
48+
router_mpath_nh.sh \
49+
router_multicast.sh \
50+
router_multipath.sh \
51+
router.sh \
52+
router_vid_1.sh \
53+
sch_ets_core.sh \
54+
sch_ets.sh \
55+
sch_ets_tests.sh \
56+
sch_tbf_core.sh \
57+
sch_tbf_etsprio.sh \
58+
sch_tbf_ets.sh \
59+
sch_tbf_prio.sh \
60+
sch_tbf_root.sh \
61+
tc_actions.sh \
62+
tc_chains.sh \
63+
tc_common.sh \
64+
tc_flower_router.sh \
65+
tc_flower.sh \
66+
tc_shblocks.sh \
67+
tc_vlan_modify.sh \
68+
vxlan_asymmetric.sh \
69+
vxlan_bridge_1d_port_8472.sh \
70+
vxlan_bridge_1d.sh \
71+
vxlan_bridge_1q_port_8472.sh \
72+
vxlan_bridge_1q.sh \
73+
vxlan_symmetric.sh
74+
75+
include ../../lib.mk

0 commit comments

Comments
 (0)