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 /nest/a-path.c | |
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 'nest/a-path.c')
-rw-r--r-- | nest/a-path.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nest/a-path.c b/nest/a-path.c index b453f702..bc2216a0 100644 --- a/nest/a-path.c +++ b/nest/a-path.c @@ -20,7 +20,7 @@ #define put_as put_u32 #define get_as get_u32 -#define BS 4 +#define BS 4 /* Base (default) size of ASN (autonomous system number) */ struct adata * as_path_prepend(struct linpool *pool, struct adata *olda, u32 as) @@ -499,7 +499,6 @@ pm_mark(struct pm_pos *pos, int i, int plen, int *nl, int *nh) * (auxiliary position after last real position in AS path) * is marked. */ - int as_path_match(struct adata *path, struct f_path_mask *mask) { |