78 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
| # SPDX-License-Identifier: GPL-2.0+ OR MIT
 | |
| 
 | |
| TEST_PROGS = bridge_igmp.sh \
 | |
| 	bridge_port_isolation.sh \
 | |
| 	bridge_sticky_fdb.sh \
 | |
| 	bridge_vlan_aware.sh \
 | |
| 	bridge_vlan_unaware.sh \
 | |
| 	ethtool.sh \
 | |
| 	gre_inner_v4_multipath.sh \
 | |
| 	gre_inner_v6_multipath.sh \
 | |
| 	gre_multipath.sh \
 | |
| 	ip6_forward_instats_vrf.sh \
 | |
| 	ip6gre_inner_v4_multipath.sh \
 | |
| 	ip6gre_inner_v6_multipath.sh \
 | |
| 	ipip_flat_gre_key.sh \
 | |
| 	ipip_flat_gre_keys.sh \
 | |
| 	ipip_flat_gre.sh \
 | |
| 	ipip_hier_gre_key.sh \
 | |
| 	ipip_hier_gre_keys.sh \
 | |
| 	ipip_hier_gre.sh \
 | |
| 	loopback.sh \
 | |
| 	mirror_gre_bound.sh \
 | |
| 	mirror_gre_bridge_1d.sh \
 | |
| 	mirror_gre_bridge_1d_vlan.sh \
 | |
| 	mirror_gre_bridge_1q_lag.sh \
 | |
| 	mirror_gre_bridge_1q.sh \
 | |
| 	mirror_gre_changes.sh \
 | |
| 	mirror_gre_flower.sh \
 | |
| 	mirror_gre_lag_lacp.sh \
 | |
| 	mirror_gre_neigh.sh \
 | |
| 	mirror_gre_nh.sh \
 | |
| 	mirror_gre.sh \
 | |
| 	mirror_gre_vlan_bridge_1q.sh \
 | |
| 	mirror_gre_vlan.sh \
 | |
| 	mirror_vlan.sh \
 | |
| 	router_bridge.sh \
 | |
| 	router_bridge_vlan.sh \
 | |
| 	router_broadcast.sh \
 | |
| 	router_mpath_nh.sh \
 | |
| 	router_multicast.sh \
 | |
| 	router_multipath.sh \
 | |
| 	router.sh \
 | |
| 	router_vid_1.sh \
 | |
| 	sch_ets.sh \
 | |
| 	sch_tbf_ets.sh \
 | |
| 	sch_tbf_prio.sh \
 | |
| 	sch_tbf_root.sh \
 | |
| 	tc_actions.sh \
 | |
| 	tc_chains.sh \
 | |
| 	tc_flower_router.sh \
 | |
| 	tc_flower.sh \
 | |
| 	tc_shblocks.sh \
 | |
| 	tc_vlan_modify.sh \
 | |
| 	vxlan_asymmetric.sh \
 | |
| 	vxlan_bridge_1d_port_8472.sh \
 | |
| 	vxlan_bridge_1d.sh \
 | |
| 	vxlan_bridge_1q_port_8472.sh \
 | |
| 	vxlan_bridge_1q.sh \
 | |
| 	vxlan_symmetric.sh
 | |
| 
 | |
| TEST_PROGS_EXTENDED := devlink_lib.sh \
 | |
| 	ethtool_lib.sh \
 | |
| 	fib_offload_lib.sh \
 | |
| 	forwarding.config.sample \
 | |
| 	ipip_lib.sh \
 | |
| 	lib.sh \
 | |
| 	mirror_gre_lib.sh \
 | |
| 	mirror_gre_topo_lib.sh \
 | |
| 	mirror_lib.sh \
 | |
| 	mirror_topo_lib.sh \
 | |
| 	sch_ets_core.sh \
 | |
| 	sch_ets_tests.sh \
 | |
| 	sch_tbf_core.sh \
 | |
| 	sch_tbf_etsprio.sh \
 | |
| 	tc_common.sh
 | |
| 
 | |
| include ../../lib.mk
 |