0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-22 09:41:54 +00:00

Disabling filter test unless needed protocols are configured

This commit is contained in:
Maria Matejka 2024-12-03 20:08:23 +01:00
parent 161aef353a
commit 2a726e0559

View File

@ -17,7 +17,10 @@ $(o)inst-interpret.c: $(s)decl.m4 $(s)f-inst.c $(objdir)/.dir-stamp
prepare: $(o)inst-interpret.c $(o)inst-gen.h
tests_src := tree_test.c filter_test.c trie_test.c
tests_src := tree_test.c trie_test.c
ifeq ($(findstring bgp,$(protocols))-$(findstring static,$(protocols)),bgp-static)
tests_src += filter_test.c
endif
tests_targets := $(tests_targets) $(tests-target-files)
tests_objs := $(tests_objs) $(src-o-files)