diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2016-11-09 16:36:34 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2016-11-09 16:36:34 +0100 |
commit | 9b0a0ba9e671d9134b93c33ab73ccccb352acafa (patch) | |
tree | 2a3b007b698c02c72c7bae25d3c7cae6293cd36f /proto | |
parent | 8860e991f6650e47cfe6c1af595fe4fe92a4edfd (diff) |
Unit Testing for BIRD
- Unit Testing Framework (BirdTest)
- Integration of BirdTest into the BIRD build system
- Tests for several BIRD modules
Based on squashed Pavel Tvrdik's int-test branch, updated for
current int-new branch.
Diffstat (limited to 'proto')
-rw-r--r-- | proto/bfd/Makefile | 2 | ||||
-rw-r--r-- | proto/bgp/Makefile | 2 | ||||
-rw-r--r-- | proto/ospf/Makefile | 2 | ||||
-rw-r--r-- | proto/ospf/rt.c | 2 | ||||
-rw-r--r-- | proto/pipe/Makefile | 2 | ||||
-rw-r--r-- | proto/radv/Makefile | 2 | ||||
-rw-r--r-- | proto/radv/radv.c | 2 | ||||
-rw-r--r-- | proto/rip/Makefile | 2 | ||||
-rw-r--r-- | proto/static/Makefile | 2 |
9 files changed, 16 insertions, 2 deletions
diff --git a/proto/bfd/Makefile b/proto/bfd/Makefile index 489216d8..402122fc 100644 --- a/proto/bfd/Makefile +++ b/proto/bfd/Makefile @@ -2,3 +2,5 @@ src := bfd.c io.c packets.c obj := $(src-o-files) $(all-daemon) $(cf-local) + +tests_objs := $(tests_objs) $(src-o-files)
\ No newline at end of file diff --git a/proto/bgp/Makefile b/proto/bgp/Makefile index f4958867..00aaef5e 100644 --- a/proto/bgp/Makefile +++ b/proto/bgp/Makefile @@ -2,3 +2,5 @@ src := attrs.c bgp.c packets.c obj := $(src-o-files) $(all-daemon) $(cf-local) + +tests_objs := $(tests_objs) $(src-o-files)
\ No newline at end of file diff --git a/proto/ospf/Makefile b/proto/ospf/Makefile index fe52ed30..39e74f71 100644 --- a/proto/ospf/Makefile +++ b/proto/ospf/Makefile @@ -2,3 +2,5 @@ src := dbdes.c hello.c iface.c lsack.c lsalib.c lsreq.c lsupd.c neighbor.c ospf. obj := $(src-o-files) $(all-daemon) $(cf-local) + +tests_objs := $(tests_objs) $(src-o-files)
\ No newline at end of file diff --git a/proto/ospf/rt.c b/proto/ospf/rt.c index c5c54783..054841ca 100644 --- a/proto/ospf/rt.c +++ b/proto/ospf/rt.c @@ -1921,7 +1921,7 @@ rt_sync(struct ospf_proto *p) /* This is used for forced reload of routes */ int reload = (p->calcrt == 2); - OSPF_TRACE(D_EVENTS, "Starting routing table synchronisation"); + OSPF_TRACE(D_EVENTS, "Starting routing table synchronization"); DBG("Now syncing my rt table with nest's\n"); FIB_ITERATE_INIT(&fit, fib); diff --git a/proto/pipe/Makefile b/proto/pipe/Makefile index c258a3e5..5093da98 100644 --- a/proto/pipe/Makefile +++ b/proto/pipe/Makefile @@ -2,3 +2,5 @@ src := pipe.c obj := $(src-o-files) $(all-daemon) $(cf-local) + +tests_objs := $(tests_objs) $(src-o-files)
\ No newline at end of file diff --git a/proto/radv/Makefile b/proto/radv/Makefile index 3584a5f3..05317eff 100644 --- a/proto/radv/Makefile +++ b/proto/radv/Makefile @@ -2,3 +2,5 @@ src := packets.c radv.c obj := $(src-o-files) $(all-daemon) $(cf-local) + +tests_objs := $(tests_objs) $(src-o-files)
\ No newline at end of file diff --git a/proto/radv/radv.c b/proto/radv/radv.c index 44b44879..d7d975ab 100644 --- a/proto/radv/radv.c +++ b/proto/radv/radv.c @@ -311,7 +311,7 @@ radv_check_active(struct proto_radv *ra) if (!radv_trigger_valid(cf)) return 1; - struct channel *c =ra->p.main_channel; + struct channel *c = ra->p.main_channel; return rt_examine(c->table, &cf->trigger, &ra->p, c->out_filter); } diff --git a/proto/rip/Makefile b/proto/rip/Makefile index 6e645cc2..7feabcd8 100644 --- a/proto/rip/Makefile +++ b/proto/rip/Makefile @@ -2,3 +2,5 @@ src := packets.c rip.c obj := $(src-o-files) $(all-daemon) $(cf-local) + +tests_objs := $(tests_objs) $(src-o-files)
\ No newline at end of file diff --git a/proto/static/Makefile b/proto/static/Makefile index 3ace39cf..e38f9b74 100644 --- a/proto/static/Makefile +++ b/proto/static/Makefile @@ -2,3 +2,5 @@ src := static.c obj := $(src-o-files) $(all-daemon) $(cf-local) + +tests_objs := $(tests_objs) $(src-o-files)
\ No newline at end of file |