Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for nexthop as IPv4 mapped IPv6 address #6454

Closed

Conversation

KaushikNiral
Copy link
Member

BUG No. #6341 and #6382
lib : Added a macro to validate the IPv4 Mapped IPv6 address.
bgp : Modifications done for bgp receive and while sending updates
for IPv4 Mapped IPv6 address.
zebra : Modifications done for installing IPv4 Mapped IPv6 address as nexthop
in RIB. Minor correction done in fpm while sending the routes for
nexthop as IPv4 Mapped IPv6 address.

Signed-off-by: Kaushik kaushik@niralnetworks.com

BUG No. FRRouting#6341 and FRRouting#6382
lib : Added a macro to validate the IPv4 Mapped IPv6 address.
bgp : Modifications done for bgp receive and while sending updates
for IPv4 Mapped IPv6 address.
zebra : Modifications done for installing IPv4 Mapped IPv6 address as nexthop
in RIB. Minor correction done in fpm while sending the routes for
nexthop as IPv4 Mapped IPv6 address.

Signed-off-by: Kaushik <kaushik@niralnetworks.com>
Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution to FRR!

  • One of your commits has an improperly formatted commit message
Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/71d15bb847cf4f875ba7ecb8dfee13fa/raw/67a6c87e72afce3f29b59fb26243db9d588fb1e7/cr_6454_1590415526.diff | git apply

diff --git a/bgpd/bgp_nht.c b/bgpd/bgp_nht.c
index 33bd3d5ee..57e01fd42 100644
--- a/bgpd/bgp_nht.c
+++ b/bgpd/bgp_nht.c
@@ -145,7 +145,7 @@ int bgp_find_or_add_nexthop(struct bgp *bgp_route, struct bgp *bgp_nexthop,
 			afi = BGP_ATTR_NEXTHOP_AFI_IP6(pi->attr) ? AFI_IP6
 								 : AFI_IP;
 		/* Validation for the ipv4 mapped ipv6 nexthop. */
-		if(VALIDATE_MAPPED_IPV6(&pi->attr->mp_nexthop_global)) {
+		if (VALIDATE_MAPPED_IPV6(&pi->attr->mp_nexthop_global)) {
 			afi = AFI_IP;
 		}
 
@@ -536,7 +536,7 @@ static int make_prefix(int afi, struct bgp_path_info *pi, struct prefix *p)
 				    : 0;
 	struct bgp_node *net = pi->net;
 	const struct prefix *p_orig = bgp_node_get_prefix(net);
-        struct in_addr ipv4;
+	struct in_addr ipv4;
 
 	if (p_orig->family == AF_FLOWSPEC) {
 		if (!pi->peer)
@@ -552,8 +552,10 @@ static int make_prefix(int afi, struct bgp_path_info *pi, struct prefix *p)
 			p->u.prefix4 = p_orig->u.prefix4;
 			p->prefixlen = p_orig->prefixlen;
 		} else {
-			if (VALIDATE_MAPPED_IPV6 (&pi->attr->mp_nexthop_global)) {
-				ipv4_mapped_ipv6_to_ipv4(&pi->attr->mp_nexthop_global, &ipv4);
+			if (VALIDATE_MAPPED_IPV6(
+				    &pi->attr->mp_nexthop_global)) {
+				ipv4_mapped_ipv6_to_ipv4(
+					&pi->attr->mp_nexthop_global, &ipv4);
 				p->u.prefix4 = ipv4;
 				p->prefixlen = IPV4_MAX_BITLEN;
 			} else {
diff --git a/bgpd/bgp_updgrp_packet.c b/bgpd/bgp_updgrp_packet.c
index 92f5e6dc3..de26b0c68 100644
--- a/bgpd/bgp_updgrp_packet.c
+++ b/bgpd/bgp_updgrp_packet.c
@@ -575,12 +575,16 @@ struct stream *bpacket_reformat_for_peer(struct bpacket *pkt,
 		}
 
 		if (IN6_IS_ADDR_UNSPECIFIED(mod_v6nhg)) {
-			if(peer->nexthop.v4.s_addr) {
-				ipv4_to_ipv4_mapped_ipv6(mod_v6nhg, peer->nexthop.v4);
+			if (peer->nexthop.v4.s_addr) {
+				ipv4_to_ipv4_mapped_ipv6(mod_v6nhg,
+							 peer->nexthop.v4);
 			}
 		} else {
-			if(peer->nexthop.v4.s_addr && (!IN6_IS_ADDR_LINKLOCAL(&peer->nexthop.v6_local))) {
-				ipv4_to_ipv4_mapped_ipv6(mod_v6nhg, peer->nexthop.v4);
+			if (peer->nexthop.v4.s_addr
+			    && (!IN6_IS_ADDR_LINKLOCAL(
+				    &peer->nexthop.v6_local))) {
+				ipv4_to_ipv4_mapped_ipv6(mod_v6nhg,
+							 peer->nexthop.v4);
 				gnh_modified = 1;
 			}
 		}
diff --git a/lib/ipaddr.h b/lib/ipaddr.h
index c9028992b..cdcae929e 100644
--- a/lib/ipaddr.h
+++ b/lib/ipaddr.h
@@ -93,10 +93,12 @@ static inline char *ipaddr2str(const struct ipaddr *ip, char *buf, int size)
 	return buf;
 }
 
-#define VALIDATE_MAPPED_IPV6(A)                                           \
-  ((A)->s6_addr32[0] == 0x00000000 ?                                      \
-  ((A)->s6_addr32[1] == 0x00000000 ?                                      \
-  (ntohl((A)->s6_addr32[2]) == 0xFFFF ? 1 : 0): 0): 0)
+#define VALIDATE_MAPPED_IPV6(A)                                                \
+	((A)->s6_addr32[0] == 0x00000000                                       \
+		 ? ((A)->s6_addr32[1] == 0x00000000                            \
+			    ? (ntohl((A)->s6_addr32[2]) == 0xFFFF ? 1 : 0)     \
+			    : 0)                                               \
+		 : 0)
 
 /*
  * Convert IPv4 address to IPv4-mapped IPv6 address which is of the
diff --git a/zebra/rt_netlink.c b/zebra/rt_netlink.c
index 0e27f6173..2672f4ec4 100644
--- a/zebra/rt_netlink.c
+++ b/zebra/rt_netlink.c
@@ -1047,14 +1047,15 @@ static void _netlink_route_nl_add_gateway_info(uint8_t route_family,
 			  bytelen + 2);
 	} else {
 
-		if(nexthop->rparent && VALIDATE_MAPPED_IPV6(&nexthop->rparent->gate.ipv6)) {
+		if (nexthop->rparent
+		    && VALIDATE_MAPPED_IPV6(&nexthop->rparent->gate.ipv6)) {
 		} else {
 			if (gw_family == AF_INET)
 				addattr_l(nlmsg, req_size, RTA_GATEWAY,
-						&nexthop->gate.ipv4, bytelen);
+					  &nexthop->gate.ipv4, bytelen);
 			else
 				addattr_l(nlmsg, req_size, RTA_GATEWAY,
-						&nexthop->gate.ipv6, bytelen);
+					  &nexthop->gate.ipv6, bytelen);
 		}
 	}
 }
diff --git a/zebra/zebra_fpm_netlink.c b/zebra/zebra_fpm_netlink.c
index 7b5aa0a4c..b856f9da9 100644
--- a/zebra/zebra_fpm_netlink.c
+++ b/zebra/zebra_fpm_netlink.c
@@ -422,13 +422,15 @@ static int netlink_route_info_encode(struct netlink_route_info *ri,
 	if (ri->num_nhs == 1) {
 		nhi = &ri->nhs[0];
 		if (nhi->gateway) {
-			if(nhi->type == NEXTHOP_TYPE_IPV4_IFINDEX && ri->af == AF_INET6) {
-				ipv4_to_ipv4_mapped_ipv6(&ipv6, nhi->gateway->ipv4);
+			if (nhi->type == NEXTHOP_TYPE_IPV4_IFINDEX
+			    && ri->af == AF_INET6) {
+				ipv4_to_ipv4_mapped_ipv6(&ipv6,
+							 nhi->gateway->ipv4);
 				addattr_l(&req->n, in_buf_len, RTA_GATEWAY,
-						&ipv6, bytelen);
+					  &ipv6, bytelen);
 			} else
-			addattr_l(&req->n, in_buf_len, RTA_GATEWAY,
-				  nhi->gateway, bytelen);
+				addattr_l(&req->n, in_buf_len, RTA_GATEWAY,
+					  nhi->gateway, bytelen);
 		}
 
 		if (nhi->if_index) {
diff --git a/zebra/zebra_nhg.c b/zebra/zebra_nhg.c
index cf8daeed4..8230832fe 100644
--- a/zebra/zebra_nhg.c
+++ b/zebra/zebra_nhg.c
@@ -1829,7 +1829,7 @@ static int nexthop_active(afi_t afi, struct route_entry *re,
 	}
 
 	/* Validation for ipv4 mapped ipv6 nexthop. */
-	if (VALIDATE_MAPPED_IPV6 (&nexthop->gate.ipv6)) {
+	if (VALIDATE_MAPPED_IPV6(&nexthop->gate.ipv6)) {
 		afi = AFI_IP;
 	}
 	/* Make lookup prefix. */
@@ -1838,7 +1838,7 @@ static int nexthop_active(afi_t afi, struct route_entry *re,
 	case AFI_IP:
 		p.family = AF_INET;
 		p.prefixlen = IPV4_MAX_PREFIXLEN;
-		if (VALIDATE_MAPPED_IPV6 (&nexthop->gate.ipv6)) {
+		if (VALIDATE_MAPPED_IPV6(&nexthop->gate.ipv6)) {
 			ipv4_mapped_ipv6_to_ipv4(&nexthop->gate.ipv6, &ipv4);
 			p.u.prefix4 = ipv4;
 		} else {

If you are a new contributor to FRR, please see our contributing guidelines.

BUG No. FRRouting#6341 and FRRouting#6382
lib : Added a macro to validate the IPv4 Mapped IPv6 address.
bgp : Modifications done for bgp receive and while sending updates
for IPv4 Mapped IPv6 address.
zebra : Modifications done for installing IPv4 Mapped IPv6 address as nexthop
in RIB. Minor correction done in fpm while sending the routes for
nexthop as IPv4 Mapped IPv6 address.

Signed-off-by: Kaushik <kaushik@niralnetworks.com>
Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution to FRR!

  • One of your commits has an improperly formatted commit message

If you are a new contributor to FRR, please see our contributing guidelines.

@LabN-CI
Copy link
Collaborator

LabN-CI commented May 25, 2020

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result SUCCESS git merge/6454 ab51820
Date 05/25/2020
Start 10:20:40
Finish 10:46:39
Run-Time 25:59
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2020-05-25-10:20:40.txt
Log autoscript-2020-05-25-10:21:37.log.bz2
Memory 494 485 425

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented May 25, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12394/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Successful

Basic Tests: Failed

Topo tests part 1 on Ubuntu 18.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1804AMD64-12394/test

Topology Tests failed for Topo tests part 1 on Ubuntu 18.04 amd64:

2020-05-25 14:36:10,045 ERROR: 'router_json_cmp' failed after 25.11 seconds
2020-05-25 14:36:10,047 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
2020-05-25 14:38:27,630 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-25 14:38:27,867 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-25 14:52:10,773 ERROR: '_bgp_has_routes' failed after 37.41 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12394/artifact/TP1U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 amd64: Failed (click for details) Topo tests part 2 on Ubuntu 18.04 amd64: No useful log found
Topo tests part 1 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604I386-12394/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 i386:

2020-05-25 16:36:07,539 ERROR: 'router_json_cmp' failed after 25.86 seconds
2020-05-25 16:36:07,541 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2020-05-25 16:38:27,551 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-25 16:38:27,832 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-25 16:52:46,396 ERROR: '_bgp_has_routes' failed after 38.53 seconds
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12394/artifact/TP1U1604I386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604AMD64-12394/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 amd64:

2020-05-25 16:36:03,187 ERROR: 'router_json_cmp' failed after 25.23 seconds
2020-05-25 16:36:03,189 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
2020-05-25 16:38:19,619 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-25 16:38:19,866 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-25 16:52:18,013 ERROR: '_bgp_has_routes' failed after 37.62 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12394/artifact/TP1U1604AMD64/ErrorLog/log_topotests.txt

Successful on other platforms/tests
  • IPv4 ldp protocol on Ubuntu 18.04
  • Addresssanitizer topotests part 2
  • Ubuntu 20.04 deb pkg check
  • Debian 8 deb pkg check
  • Ubuntu 18.04 deb pkg check
  • Debian 9 deb pkg check
  • Topo tests part 0 on Ubuntu 16.04 amd64
  • IPv4 protocols on Ubuntu 18.04
  • Topo tests part 2 on Ubuntu 16.04 amd64
  • CentOS 7 rpm pkg check
  • Addresssanitizer topotests part 0
  • Topo tests part 0 on Ubuntu 16.04 i386
  • Debian 10 deb pkg check
  • Static analyzer (clang)
  • Topo tests part 2 on Ubuntu 16.04 i386
  • Topo tests part 0 on Ubuntu 18.04 amd64
  • IPv6 protocols on Ubuntu 18.04
  • Ubuntu 16.04 deb pkg check
  • Fedora 29 rpm pkg check
  • Addresssanitizer topotests part 1

Warnings Generated during build:

Checkout code: Successful with additional warnings
Topo tests part 1 on Ubuntu 18.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1804AMD64-12394/test

Topology Tests failed for Topo tests part 1 on Ubuntu 18.04 amd64:

2020-05-25 14:36:10,045 ERROR: 'router_json_cmp' failed after 25.11 seconds
2020-05-25 14:36:10,047 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
2020-05-25 14:38:27,630 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-25 14:38:27,867 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-25 14:52:10,773 ERROR: '_bgp_has_routes' failed after 37.41 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12394/artifact/TP1U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 amd64: Failed (click for details) Topo tests part 2 on Ubuntu 18.04 amd64: No useful log found
Topo tests part 1 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604I386-12394/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 i386:

2020-05-25 16:36:07,539 ERROR: 'router_json_cmp' failed after 25.86 seconds
2020-05-25 16:36:07,541 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2020-05-25 16:38:27,551 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-25 16:38:27,832 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-25 16:52:46,396 ERROR: '_bgp_has_routes' failed after 38.53 seconds
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12394/artifact/TP1U1604I386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604AMD64-12394/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 amd64:

2020-05-25 16:36:03,187 ERROR: 'router_json_cmp' failed after 25.23 seconds
2020-05-25 16:36:03,189 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
2020-05-25 16:38:19,619 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-25 16:38:19,866 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-25 16:52:18,013 ERROR: '_bgp_has_routes' failed after 37.62 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12394/artifact/TP1U1604AMD64/ErrorLog/log_topotests.txt

Report for bgp_nht.c | 12 issues
===============================================
< ERROR: space required before the open parenthesis '('
< #148: FILE: /tmp/f1-23639/bgp_nht.c:148:
< WARNING: braces {} are not necessary for single statement blocks
< #148: FILE: /tmp/f1-23639/bgp_nht.c:148:
< ERROR: code indent should use tabs where possible
< #539: FILE: /tmp/f1-23639/bgp_nht.c:539:
< WARNING: please, no spaces at the start of a line
< #539: FILE: /tmp/f1-23639/bgp_nht.c:539:
< WARNING: line over 80 characters
< #555: FILE: /tmp/f1-23639/bgp_nht.c:555:
< WARNING: line over 80 characters
< #556: FILE: /tmp/f1-23639/bgp_nht.c:556:
Report for bgp_updgrp_packet.c | 12 issues
===============================================
< ERROR: space required before the open parenthesis '('
< #578: FILE: /tmp/f1-23639/bgp_updgrp_packet.c:578:
< WARNING: braces {} are not necessary for single statement blocks
< #578: FILE: /tmp/f1-23639/bgp_updgrp_packet.c:578:
< WARNING: line over 80 characters
< #579: FILE: /tmp/f1-23639/bgp_updgrp_packet.c:579:
< WARNING: line over 80 characters
< #582: FILE: /tmp/f1-23639/bgp_updgrp_packet.c:582:
< ERROR: space required before the open parenthesis '('
< #582: FILE: /tmp/f1-23639/bgp_updgrp_packet.c:582:
< WARNING: line over 80 characters
< #583: FILE: /tmp/f1-23639/bgp_updgrp_packet.c:583:
Report for ipaddr.h | 10 issues
===============================================
< WARNING: please, no spaces at the start of a line
< #97: FILE: /tmp/f1-23639/ipaddr.h:97:
< WARNING: please, no spaces at the start of a line
< #98: FILE: /tmp/f1-23639/ipaddr.h:98:
< WARNING: please, no spaces at the start of a line
< #99: FILE: /tmp/f1-23639/ipaddr.h:99:
< ERROR: spaces required around that ':' (ctx:VxW)
< #99: FILE: /tmp/f1-23639/ipaddr.h:99:
< ERROR: spaces required around that ':' (ctx:VxW)
< #99: FILE: /tmp/f1-23639/ipaddr.h:99:
Report for rt_netlink.c | 4 issues
===============================================
< WARNING: line over 80 characters
< #1050: FILE: /tmp/f1-23639/rt_netlink.c:1050:
< ERROR: space required before the open parenthesis '('
< #1050: FILE: /tmp/f1-23639/rt_netlink.c:1050:
Report for zebra_fpm_netlink.c | 8 issues
===============================================
< WARNING: line over 80 characters
< #425: FILE: /tmp/f1-23639/zebra_fpm_netlink.c:425:
< ERROR: space required before the open parenthesis '('
< #425: FILE: /tmp/f1-23639/zebra_fpm_netlink.c:425:
< WARNING: line over 80 characters
< #426: FILE: /tmp/f1-23639/zebra_fpm_netlink.c:426:
< WARNING: suspect code indent for conditional statements (24, 24)
< #429: FILE: /tmp/f1-23639/zebra_fpm_netlink.c:429:
Report for zebra_nhg.c | 2 issues
===============================================
< WARNING: braces {} are not necessary for single statement blocks
< #1832: FILE: /tmp/f1-23639/zebra_nhg.c:1832:

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12394/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.4.1 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.4.1 (current is 4.3.0)
W: frr-doc: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200525-00-ged741b675-0 (missing) -> 7.5-dev-20200525-00-ged741b675-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200525-00-ged741b675-0 (missing) -> 7.5-dev-20200525-00-ged741b675-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200525-00-ged741b675-0 (missing) -> 7.5-dev-20200525-00-ged741b675-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200525-00-ged741b675-0 (missing) -> 7.5-dev-20200525-00-ged741b675-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200525-00-ged741b675-0 (missing) -> 7.5-dev-20200525-00-ged741b675-0~deb10u1

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented May 25, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12395/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Successful

Basic Tests: Failed

Topo tests part 1 on Ubuntu 18.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1804AMD64-12395/test

Topology Tests failed for Topo tests part 1 on Ubuntu 18.04 amd64:

2020-05-25 14:44:30,780 ERROR: 'router_json_cmp' failed after 25.09 seconds
2020-05-25 14:44:30,782 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
2020-05-25 14:46:46,688 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-25 14:46:46,924 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-25 14:54:19,861 ERROR: assert failed at "test_ibgp_ecmp_topo2/test_ecmp_after_clear_bgp[redist_static]": Testcase test_ecmp_after_clear_bgp[redist_static] : Failed 
   Error: TIMEOUT!! BGP is not converged in 30 seconds for router r3
assert 'TIMEOUT!! BGP is not converged in 30 seconds for router r3' is True
2020-05-25 14:54:35,595 ERROR: assert failed at "test_ibgp_ecmp_topo2/test_ecmp_after_clear_bgp[advertise_nw]": Testcase test_ecmp_after_clear_bgp[advertise_nw] : Failed 
   Error: Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3\n" is True
2020-05-25 14:54:51,521 ERROR: assert failed at "test_ibgp_ecmp_topo2/test_ecmp_remove_redistribute_static": Testcase test_ecmp_remove_redistribute_static : Failed 
   Error: Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3\n" is True
2020-05-25 14:55:07,382 ERROR: assert failed at "test_ibgp_ecmp_topo2/test_ecmp_shut_bgp_neighbor[redist_static]": Testcase test_ecmp_shut_bgp_neighbor[redist_static] : Failed 
   Error: Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3\n" is True
2020-05-25 14:55:23,130 ERROR: assert failed at "test_ibgp_ecmp_topo2/test_ecmp_shut_bgp_neighbor[advertise_nw]": Testcase test_ecmp_shut_bgp_neighbor[advertise_nw] : Failed 
   Error: Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3\n" is True
2020-05-25 14:55:39,036 ERROR: assert failed at "test_ibgp_ecmp_topo2/test_ecmp_remove_static_route": Testcase test_ecmp_remove_static_route : Failed 
   Error: Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3\n" is True
2020-05-25 15:02:06,624 ERROR: '_bgp_has_routes' failed after 37.30 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12395/artifact/TP1U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP2U1804AMD64-12395/test

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 amd64:

2020-05-25 14:57:24,217 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2020-05-25 14:57:24,345 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2020-05-25 14:57:24,471 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2020-05-25 14:57:24,600 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2020-05-25 14:59:32,019 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



2020-05-25 15:13:52,647 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error Nexthop set(['fd00:0:0:e::1']) is Missing for route 1::1/128 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:e::1']) is Missing for route 1::1/128 in RIB of router r3\n" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12395/artifact/TP2U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604AMD64-12395/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 amd64:

2020-05-25 16:44:31,650 ERROR: 'router_json_cmp' failed after 25.29 seconds
2020-05-25 16:44:31,652 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
2020-05-25 16:46:48,270 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-25 16:46:48,523 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-25 17:00:43,805 ERROR: '_bgp_has_routes' failed after 37.82 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12395/artifact/TP1U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP2U1604I386-12395/test

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 i386:

2020-05-25 16:55:19,420 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2020-05-25 16:55:19,645 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2020-05-25 16:55:19,848 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2020-05-25 16:55:19,991 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2020-05-25 16:57:31,469 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



2020-05-25 17:12:42,603 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error Nexthop set(['fd00:0:0:10::1']) is Missing for route 2::1/128 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:10::1']) is Missing for route 2::1/128 in RIB of router r3\n" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12395/artifact/TP2U1604I386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604I386-12395/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 i386:

2020-05-25 16:44:43,092 ERROR: 'router_json_cmp' failed after 26.47 seconds
2020-05-25 16:44:43,094 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2020-05-25 16:47:13,293 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-25 16:47:13,710 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-25 17:02:21,223 ERROR: '_bgp_has_routes' failed after 40.40 seconds
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12395/artifact/TP1U1604I386/ErrorLog/log_topotests.txt

Successful on other platforms/tests
  • Ubuntu 18.04 deb pkg check
  • Ubuntu 20.04 deb pkg check
  • Debian 8 deb pkg check
  • Addresssanitizer topotests part 2
  • IPv4 protocols on Ubuntu 18.04
  • Topo tests part 0 on Ubuntu 16.04 amd64
  • Debian 9 deb pkg check
  • Topo tests part 2 on Ubuntu 16.04 amd64
  • Addresssanitizer topotests part 0
  • Topo tests part 0 on Ubuntu 16.04 i386
  • IPv4 ldp protocol on Ubuntu 18.04
  • Debian 10 deb pkg check
  • CentOS 7 rpm pkg check
  • Static analyzer (clang)
  • Topo tests part 0 on Ubuntu 18.04 amd64
  • IPv6 protocols on Ubuntu 18.04
  • Fedora 29 rpm pkg check
  • Ubuntu 16.04 deb pkg check
  • Addresssanitizer topotests part 1

Warnings Generated during build:

Checkout code: Successful with additional warnings
Topo tests part 1 on Ubuntu 18.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1804AMD64-12395/test

Topology Tests failed for Topo tests part 1 on Ubuntu 18.04 amd64:

2020-05-25 14:44:30,780 ERROR: 'router_json_cmp' failed after 25.09 seconds
2020-05-25 14:44:30,782 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
2020-05-25 14:46:46,688 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-25 14:46:46,924 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-25 14:54:19,861 ERROR: assert failed at "test_ibgp_ecmp_topo2/test_ecmp_after_clear_bgp[redist_static]": Testcase test_ecmp_after_clear_bgp[redist_static] : Failed 
   Error: TIMEOUT!! BGP is not converged in 30 seconds for router r3
assert 'TIMEOUT!! BGP is not converged in 30 seconds for router r3' is True
2020-05-25 14:54:35,595 ERROR: assert failed at "test_ibgp_ecmp_topo2/test_ecmp_after_clear_bgp[advertise_nw]": Testcase test_ecmp_after_clear_bgp[advertise_nw] : Failed 
   Error: Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3\n" is True
2020-05-25 14:54:51,521 ERROR: assert failed at "test_ibgp_ecmp_topo2/test_ecmp_remove_redistribute_static": Testcase test_ecmp_remove_redistribute_static : Failed 
   Error: Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3\n" is True
2020-05-25 14:55:07,382 ERROR: assert failed at "test_ibgp_ecmp_topo2/test_ecmp_shut_bgp_neighbor[redist_static]": Testcase test_ecmp_shut_bgp_neighbor[redist_static] : Failed 
   Error: Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3\n" is True
2020-05-25 14:55:23,130 ERROR: assert failed at "test_ibgp_ecmp_topo2/test_ecmp_shut_bgp_neighbor[advertise_nw]": Testcase test_ecmp_shut_bgp_neighbor[advertise_nw] : Failed 
   Error: Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3\n" is True
2020-05-25 14:55:39,036 ERROR: assert failed at "test_ibgp_ecmp_topo2/test_ecmp_remove_static_route": Testcase test_ecmp_remove_static_route : Failed 
   Error: Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:14::1']) is Missing for route 1::/64 in RIB of router r3\n" is True
2020-05-25 15:02:06,624 ERROR: '_bgp_has_routes' failed after 37.30 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12395/artifact/TP1U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP2U1804AMD64-12395/test

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 amd64:

2020-05-25 14:57:24,217 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2020-05-25 14:57:24,345 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2020-05-25 14:57:24,471 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2020-05-25 14:57:24,600 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2020-05-25 14:59:32,019 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



2020-05-25 15:13:52,647 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error Nexthop set(['fd00:0:0:e::1']) is Missing for route 1::1/128 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:e::1']) is Missing for route 1::1/128 in RIB of router r3\n" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12395/artifact/TP2U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604AMD64-12395/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 amd64:

2020-05-25 16:44:31,650 ERROR: 'router_json_cmp' failed after 25.29 seconds
2020-05-25 16:44:31,652 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
2020-05-25 16:46:48,270 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-25 16:46:48,523 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-25 17:00:43,805 ERROR: '_bgp_has_routes' failed after 37.82 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12395/artifact/TP1U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP2U1604I386-12395/test

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 i386:

2020-05-25 16:55:19,420 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2020-05-25 16:55:19,645 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2020-05-25 16:55:19,848 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2020-05-25 16:55:19,991 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2020-05-25 16:57:31,469 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



2020-05-25 17:12:42,603 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error Nexthop set(['fd00:0:0:10::1']) is Missing for route 2::1/128 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:10::1']) is Missing for route 2::1/128 in RIB of router r3\n" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12395/artifact/TP2U1604I386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604I386-12395/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 i386:

2020-05-25 16:44:43,092 ERROR: 'router_json_cmp' failed after 26.47 seconds
2020-05-25 16:44:43,094 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2020-05-25 16:47:13,293 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-25 16:47:13,710 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-25 17:02:21,223 ERROR: '_bgp_has_routes' failed after 40.40 seconds
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12395/artifact/TP1U1604I386/ErrorLog/log_topotests.txt

Report for bgp_nht.c | 2 issues
===============================================
< WARNING: braces {} are not necessary for single statement blocks
< #148: FILE: /tmp/f1-27551/bgp_nht.c:148:
Report for zebra_nhg.c | 2 issues
===============================================
< WARNING: braces {} are not necessary for single statement blocks
< #1832: FILE: /tmp/f1-27551/zebra_nhg.c:1832:

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12395/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.4.1 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.4.1 (current is 4.3.0)
W: frr-snmp: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200525-01-gab5182059-0 (missing) -> 7.5-dev-20200525-01-gab5182059-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200525-01-gab5182059-0 (missing) -> 7.5-dev-20200525-01-gab5182059-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200525-01-gab5182059-0 (missing) -> 7.5-dev-20200525-01-gab5182059-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200525-01-gab5182059-0 (missing) -> 7.5-dev-20200525-01-gab5182059-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200525-01-gab5182059-0 (missing) -> 7.5-dev-20200525-01-gab5182059-0~deb10u1

lib/ipaddr.h Outdated Show resolved Hide resolved
Copy link
Member

@sworleys sworleys left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking at the code, it seems like you are trying to fix the recursive issue at install time rather than during nexthop resolution.

Why not just add code so that when you resolve an encoded nexthop, it re-encodes what it resolves to? Then you dont need special handling in the dataplane code right?

zebra/rt_netlink.c Outdated Show resolved Hide resolved
1. Macro name change to IS_MAPPED_IPV6.
2. Minor change in zebra/rt_netlink.c on a conditional statement.

Signed-off-by: Kaushik <kaushik@niralnetworks.com>
Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution to FRR!

  • One of your commits has an improperly formatted commit message
Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/c5612f097149336ea690611bbcd31e6f/raw/6797c819d45fb4b9bbf918eda76fa722a3bb2407/cr_6454_1590556833.diff | git apply

diff --git a/bgpd/bgp_nht.c b/bgpd/bgp_nht.c
index 0ad4c7d53..0b3e85689 100644
--- a/bgpd/bgp_nht.c
+++ b/bgpd/bgp_nht.c
@@ -552,8 +552,7 @@ static int make_prefix(int afi, struct bgp_path_info *pi, struct prefix *p)
 			p->u.prefix4 = p_orig->u.prefix4;
 			p->prefixlen = p_orig->prefixlen;
 		} else {
-			if (IS_MAPPED_IPV6(
-				    &pi->attr->mp_nexthop_global)) {
+			if (IS_MAPPED_IPV6(&pi->attr->mp_nexthop_global)) {
 				ipv4_mapped_ipv6_to_ipv4(
 					&pi->attr->mp_nexthop_global, &ipv4);
 				p->u.prefix4 = ipv4;
diff --git a/zebra/rt_netlink.c b/zebra/rt_netlink.c
index 02b9a3a9b..b1c7b6a65 100644
--- a/zebra/rt_netlink.c
+++ b/zebra/rt_netlink.c
@@ -1048,7 +1048,7 @@ static void _netlink_route_nl_add_gateway_info(uint8_t route_family,
 	} else {
 
 		if (!(nexthop->rparent
-		    && IS_MAPPED_IPV6(&nexthop->rparent->gate.ipv6))) {
+		      && IS_MAPPED_IPV6(&nexthop->rparent->gate.ipv6))) {
 			if (gw_family == AF_INET)
 				addattr_l(nlmsg, req_size, RTA_GATEWAY,
 					  &nexthop->gate.ipv4, bytelen);

If you are a new contributor to FRR, please see our contributing guidelines.

1. Macro name change to IS_MAPPED_IPV6.
2. Minor change in zebra/rt_netlink.c on a conditional statement.

Signed-off-by: Kaushik <kaushik@niralnetworks.com>
Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution to FRR!

  • One of your commits has an improperly formatted commit message

If you are a new contributor to FRR, please see our contributing guidelines.

@KaushikNiral
Copy link
Member Author

Looking at the code, it seems like you are trying to fix the recursive issue at install time rather than during nexthop resolution.

Why not just add code so that when you resolve an encoded nexthop, it re-encodes what it resolves to? Then you dont need special handling in the dataplane code right?

Hi Stephen,

We cannot install the nexthop address as Mapped IP in the Kernel, so we are installing with nexthop/ gateway as device for now. In the kernel there is no support for sending IPv6 packets/ traffic over IPv4 nexthop address.

Can you please explain this " Why not just add code so that when you resolve an encoded nexthop, it re-encodes what it resolves to? Then you dont need special handling in the dataplane code right? " ?

Thanks,

@LabN-CI
Copy link
Collaborator

LabN-CI commented May 27, 2020

Outdated results 💚

Basic BGPD CI results: SUCCESS, 0 tests failed

_ _
Result 0
Date 0
Start 0
Finish vncregress-2020-05-27-01:25:39.txt
Run-Time autoscript-2020-05-27-01:26:36.log.bz2
Total 499 479 425
Pass SUCCESS git merge/4885 f8bb9ed
Fail 08/27/2019
Valgrind-Errors 01:25:37
Valgrind-Loss 01:47:30
Details 21:53
Log 1815
Memory 1813
SUCCESS git merge/6454 1dfc386 2
05/27/2020 0
01:25:39 0
01:51:29 vncregress-2019-08-27-01:25:37.txt
25:50 autoscript-2019-08-27-01:26:30.log.bz2
1815 427 431 360
1815

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented May 27, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12435/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Successful

Basic Tests: Failed

Topo tests part 2 on Ubuntu 16.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP0U1604AMD64-12435/test

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 amd64:

2020-05-27 08:01:05,300 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2020-05-27 08:01:05,421 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2020-05-27 08:01:05,540 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2020-05-27 08:01:05,661 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2020-05-27 08:03:03,118 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



2020-05-27 08:16:18,612 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error Nexthop set(['fd00:0:0:e::1']) is Missing for route 1::1/128 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:e::1']) is Missing for route 1::1/128 in RIB of router r3\n" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12435/artifact/TP0U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604I386-12435/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 i386:

2020-05-27 07:51:46,810 ERROR: 'router_json_cmp' failed after 25.71 seconds
2020-05-27 07:51:46,812 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2020-05-27 07:54:06,236 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-27 07:54:06,524 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-27 08:08:26,502 ERROR: '_bgp_has_routes' failed after 38.48 seconds
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12435/artifact/TP1U1604I386/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP2U1804AMD64-12435/test

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 amd64:

2020-05-27 06:02:39,162 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2020-05-27 06:02:39,281 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2020-05-27 06:02:39,401 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2020-05-27 06:02:39,517 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2020-05-27 06:04:35,311 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



2020-05-27 06:17:51,026 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error Nexthop set(['fd00:0:0:10::1']) is Missing for route 2::1/128 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:10::1']) is Missing for route 2::1/128 in RIB of router r3\n" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12435/artifact/TP2U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604AMD64-12435/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 amd64:

2020-05-27 07:51:46,562 ERROR: 'router_json_cmp' failed after 25.14 seconds
2020-05-27 07:51:46,564 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
2020-05-27 07:54:02,993 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-27 07:54:03,299 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-27 08:07:54,639 ERROR: '_bgp_has_routes' failed after 37.76 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12435/artifact/TP1U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP2U1604I386-12435/test

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 i386:

2020-05-27 08:01:27,100 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2020-05-27 08:01:27,236 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2020-05-27 08:01:27,390 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2020-05-27 08:01:27,525 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2020-05-27 08:03:34,911 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



2020-05-27 08:17:25,603 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error Nexthop set(['fd00:0:0:10::1']) is Missing for route 2::1/128 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:10::1']) is Missing for route 2::1/128 in RIB of router r3\n" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12435/artifact/TP2U1604I386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 18.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1804AMD64-12435/test

Topology Tests failed for Topo tests part 1 on Ubuntu 18.04 amd64:

2020-05-27 05:51:48,918 ERROR: 'router_json_cmp' failed after 24.98 seconds
2020-05-27 05:51:48,919 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
2020-05-27 05:54:04,010 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-27 05:54:04,269 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-27 06:07:54,355 ERROR: '_bgp_has_routes' failed after 37.44 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12435/artifact/TP1U1804AMD64/ErrorLog/log_topotests.txt

Successful on other platforms/tests
  • IPv6 protocols on Ubuntu 18.04
  • Ubuntu 16.04 deb pkg check
  • Topo tests part 0 on Ubuntu 16.04 i386
  • Debian 10 deb pkg check
  • CentOS 7 rpm pkg check
  • Addresssanitizer topotests part 1
  • Debian 8 deb pkg check
  • Addresssanitizer topotests part 2
  • IPv4 protocols on Ubuntu 18.04
  • Topo tests part 0 on Ubuntu 16.04 amd64
  • Debian 9 deb pkg check
  • Fedora 29 rpm pkg check
  • Addresssanitizer topotests part 0
  • IPv4 ldp protocol on Ubuntu 18.04
  • Static analyzer (clang)
  • Topo tests part 0 on Ubuntu 18.04 amd64
  • Ubuntu 18.04 deb pkg check
  • Ubuntu 20.04 deb pkg check

Warnings Generated during build:

Checkout code: Successful with additional warnings
Topo tests part 2 on Ubuntu 16.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP0U1604AMD64-12435/test

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 amd64:

2020-05-27 08:01:05,300 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2020-05-27 08:01:05,421 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2020-05-27 08:01:05,540 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2020-05-27 08:01:05,661 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2020-05-27 08:03:03,118 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



2020-05-27 08:16:18,612 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error Nexthop set(['fd00:0:0:e::1']) is Missing for route 1::1/128 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:e::1']) is Missing for route 1::1/128 in RIB of router r3\n" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12435/artifact/TP0U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604I386-12435/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 i386:

2020-05-27 07:51:46,810 ERROR: 'router_json_cmp' failed after 25.71 seconds
2020-05-27 07:51:46,812 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2020-05-27 07:54:06,236 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-27 07:54:06,524 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-27 08:08:26,502 ERROR: '_bgp_has_routes' failed after 38.48 seconds
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12435/artifact/TP1U1604I386/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 18.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP2U1804AMD64-12435/test

Topology Tests failed for Topo tests part 2 on Ubuntu 18.04 amd64:

2020-05-27 06:02:39,162 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2020-05-27 06:02:39,281 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2020-05-27 06:02:39,401 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2020-05-27 06:02:39,517 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2020-05-27 06:04:35,311 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



2020-05-27 06:17:51,026 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error Nexthop set(['fd00:0:0:10::1']) is Missing for route 2::1/128 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:10::1']) is Missing for route 2::1/128 in RIB of router r3\n" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12435/artifact/TP2U1804AMD64/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604AMD64-12435/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 amd64:

2020-05-27 07:51:46,562 ERROR: 'router_json_cmp' failed after 25.14 seconds
2020-05-27 07:51:46,564 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
2020-05-27 07:54:02,993 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-27 07:54:03,299 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-27 08:07:54,639 ERROR: '_bgp_has_routes' failed after 37.76 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12435/artifact/TP1U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP2U1604I386-12435/test

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 i386:

2020-05-27 08:01:27,100 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2020-05-27 08:01:27,236 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2020-05-27 08:01:27,390 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2020-05-27 08:01:27,525 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2020-05-27 08:03:34,911 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



2020-05-27 08:17:25,603 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error Nexthop set(['fd00:0:0:10::1']) is Missing for route 2::1/128 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:10::1']) is Missing for route 2::1/128 in RIB of router r3\n" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12435/artifact/TP2U1604I386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 18.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1804AMD64-12435/test

Topology Tests failed for Topo tests part 1 on Ubuntu 18.04 amd64:

2020-05-27 05:51:48,918 ERROR: 'router_json_cmp' failed after 24.98 seconds
2020-05-27 05:51:48,919 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
2020-05-27 05:54:04,010 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-27 05:54:04,269 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-27 06:07:54,355 ERROR: '_bgp_has_routes' failed after 37.44 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12435/artifact/TP1U1804AMD64/ErrorLog/log_topotests.txt

Report for bgp_nht.c | 2 issues
===============================================
< WARNING: braces {} are not necessary for single statement blocks
< #148: FILE: /tmp/f1-28586/bgp_nht.c:148:
Report for zebra_nhg.c | 2 issues
===============================================
< WARNING: braces {} are not necessary for single statement blocks
< #1832: FILE: /tmp/f1-28586/zebra_nhg.c:1832:

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12435/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.4.1 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.4.1 (current is 4.3.0)
W: frr-pythontools: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200527-00-g32d7ac0e7-0 (missing) -> 7.5-dev-20200527-00-g32d7ac0e7-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200527-00-g32d7ac0e7-0 (missing) -> 7.5-dev-20200527-00-g32d7ac0e7-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200527-00-g32d7ac0e7-0 (missing) -> 7.5-dev-20200527-00-g32d7ac0e7-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200527-00-g32d7ac0e7-0 (missing) -> 7.5-dev-20200527-00-g32d7ac0e7-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200527-00-g32d7ac0e7-0 (missing) -> 7.5-dev-20200527-00-g32d7ac0e7-0~deb10u1

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented May 27, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12436/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Successful

Basic Tests: Failed

Topo tests part 2 on Ubuntu 16.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP0U1604AMD64-12436/test

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 amd64:

2020-05-27 08:06:15,360 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2020-05-27 08:06:15,487 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2020-05-27 08:06:15,624 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2020-05-27 08:06:15,754 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2020-05-27 08:08:20,823 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



2020-05-27 08:21:41,674 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error Nexthop set(['fd00:0:0:e::1']) is Missing for route 1::1/128 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:e::1']) is Missing for route 1::1/128 in RIB of router r3\n" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12436/artifact/TP0U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP2U1604I386-12436/test

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 i386:

2020-05-27 08:06:39,897 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2020-05-27 08:06:40,036 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2020-05-27 08:06:40,221 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2020-05-27 08:06:40,362 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2020-05-27 08:08:38,865 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



2020-05-27 08:22:38,245 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error Nexthop set(['fd00:0:0:e::1']) is Missing for route 1::1/128 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:e::1']) is Missing for route 1::1/128 in RIB of router r3\n" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12436/artifact/TP2U1604I386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604I386-12436/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 i386:

2020-05-27 07:56:29,085 ERROR: 'router_json_cmp' failed after 25.76 seconds
2020-05-27 07:56:29,086 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2020-05-27 07:58:50,339 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-27 07:58:50,614 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-27 08:13:05,795 ERROR: '_bgp_has_routes' failed after 38.45 seconds
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12436/artifact/TP1U1604I386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604AMD64-12436/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 amd64:

2020-05-27 07:56:35,513 ERROR: 'router_json_cmp' failed after 25.24 seconds
2020-05-27 07:56:35,515 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
2020-05-27 07:58:51,887 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-27 07:58:52,154 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-27 08:12:49,889 ERROR: '_bgp_has_routes' failed after 37.61 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12436/artifact/TP1U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 18.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1804AMD64-12436/test

Topology Tests failed for Topo tests part 1 on Ubuntu 18.04 amd64:

2020-05-27 05:56:33,455 ERROR: 'router_json_cmp' failed after 25.12 seconds
2020-05-27 05:56:33,457 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
2020-05-27 05:58:50,251 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-27 05:58:50,487 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-27 06:12:38,056 ERROR: '_bgp_has_routes' failed after 37.42 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12436/artifact/TP1U1804AMD64/ErrorLog/log_topotests.txt

Successful on other platforms/tests
  • Addresssanitizer topotests part 1
  • CentOS 7 rpm pkg check
  • Ubuntu 16.04 deb pkg check
  • Topo tests part 0 on Ubuntu 18.04 amd64
  • IPv6 protocols on Ubuntu 18.04
  • Debian 10 deb pkg check
  • Topo tests part 2 on Ubuntu 18.04 amd64
  • Topo tests part 0 on Ubuntu 16.04 i386
  • Fedora 29 rpm pkg check
  • Addresssanitizer topotests part 2
  • Debian 8 deb pkg check
  • IPv4 protocols on Ubuntu 18.04
  • Ubuntu 20.04 deb pkg check
  • Topo tests part 0 on Ubuntu 16.04 amd64
  • IPv4 ldp protocol on Ubuntu 18.04
  • Debian 9 deb pkg check
  • Addresssanitizer topotests part 0
  • Static analyzer (clang)
  • Ubuntu 18.04 deb pkg check

Warnings Generated during build:

Checkout code: Successful with additional warnings
Topo tests part 2 on Ubuntu 16.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP0U1604AMD64-12436/test

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 amd64:

2020-05-27 08:06:15,360 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2020-05-27 08:06:15,487 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2020-05-27 08:06:15,624 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2020-05-27 08:06:15,754 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2020-05-27 08:08:20,823 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP0U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



2020-05-27 08:21:41,674 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error Nexthop set(['fd00:0:0:e::1']) is Missing for route 1::1/128 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:e::1']) is Missing for route 1::1/128 in RIB of router r3\n" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12436/artifact/TP0U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 2 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP2U1604I386-12436/test

Topology Tests failed for Topo tests part 2 on Ubuntu 16.04 i386:

2020-05-27 08:06:39,897 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:-1 



2020-05-27 08:06:40,036 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp community-list standard ANY permit 0:65536 



2020-05-27 08:06:40,221 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:4294967296 



2020-05-27 08:06:40,362 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % Malformed community-list value
line 2: Failure to communicate[13] to bgpd, line: bgp large-community-list standard ANY permit 0:-1:1 



2020-05-27 08:08:38,865 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 1985, in create_bgp_community_lists
    tgen, router, config_data, "bgp_community_list", build=build
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP2U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 2: % Command incomplete[4]: bgp large-community-list standard Test1 permit  



2020-05-27 08:22:38,245 ERROR: assert failed at "test_bgp_multi_vrf_topo2/test_vrf_with_multiple_links_p1": Testcase test_vrf_with_multiple_links_p1 : Failed 
   Error Nexthop set(['fd00:0:0:e::1']) is Missing for route 1::1/128 in RIB of router r3
  
assert "Nexthop set(['fd00:0:0:e::1']) is Missing for route 1::1/128 in RIB of router r3\n" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12436/artifact/TP2U1604I386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 i386: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604I386-12436/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 i386:

2020-05-27 07:56:29,085 ERROR: 'router_json_cmp' failed after 25.76 seconds
2020-05-27 07:56:29,086 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
2020-05-27 07:58:50,339 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-27 07:58:50,614 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604I386/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-27 08:13:05,795 ERROR: '_bgp_has_routes' failed after 38.45 seconds
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument
RTNETLINK answers: Invalid argument

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12436/artifact/TP1U1604I386/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 16.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1604AMD64-12436/test

Topology Tests failed for Topo tests part 1 on Ubuntu 16.04 amd64:

2020-05-27 07:56:35,513 ERROR: 'router_json_cmp' failed after 25.24 seconds
2020-05-27 07:56:35,515 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
2020-05-27 07:58:51,887 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-27 07:58:52,154 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1604AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-27 08:12:49,889 ERROR: '_bgp_has_routes' failed after 37.61 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12436/artifact/TP1U1604AMD64/ErrorLog/log_topotests.txt

Topo tests part 1 on Ubuntu 18.04 amd64: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TP1U1804AMD64-12436/test

Topology Tests failed for Topo tests part 1 on Ubuntu 18.04 amd64:

2020-05-27 05:56:33,455 ERROR: 'router_json_cmp' failed after 25.12 seconds
2020-05-27 05:56:33,457 ERROR: assert failed at "test_bfd_bgp_cbit_topo3/test_protocols_convergence": "r1" JSON output mismatches
assert Generated JSON diff error report:
  
  > $: d2 has key '2001:db8:6::/64' which is not present in d1
  > $: d2 has key '2001:db8:7::/64' which is not present in d1
2020-05-27 05:58:50,251 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: line 6: % Unknown command[27]: neighbor 10.0.0.13 remote-as 0 


2020-05-27 05:58:50,487 ERROR: Traceback (most recent call last):
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/bgp.py", line 190, in create_router_bgp
    tgen, router, data_all_bgp, "bgp", build, load_config
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 282, in create_common_configuration
    load_config_to_router(tgen, router)
  File "/root/bamboo-agent-home/xml-data/build-dir/FRR-FRRPULLREQ-TP1U1804AMD64/topotests/lib/common_config.py", line 542, in load_config_to_router
    raise InvalidCLIError("%s" % output)
InvalidCLIError: % No BGP process is configured
line 2: Failure to communicate[13] to bgpd, line: no router bgp  



2020-05-27 06:12:38,056 ERROR: '_bgp_has_routes' failed after 37.42 seconds

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12436/artifact/TP1U1804AMD64/ErrorLog/log_topotests.txt

Report for bgp_nht.c | 2 issues
===============================================
< WARNING: braces {} are not necessary for single statement blocks
< #148: FILE: /tmp/f1-31971/bgp_nht.c:148:
Report for zebra_nhg.c | 2 issues
===============================================
< WARNING: braces {} are not necessary for single statement blocks
< #1832: FILE: /tmp/f1-31971/zebra_nhg.c:1832:

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12436/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.4.1 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.4.1 (current is 4.3.0)
W: frr-doc: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200527-01-g1dfc386a3-0 (missing) -> 7.5-dev-20200527-01-g1dfc386a3-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200527-01-g1dfc386a3-0 (missing) -> 7.5-dev-20200527-01-g1dfc386a3-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200527-01-g1dfc386a3-0 (missing) -> 7.5-dev-20200527-01-g1dfc386a3-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200527-01-g1dfc386a3-0 (missing) -> 7.5-dev-20200527-01-g1dfc386a3-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200527-01-g1dfc386a3-0 (missing) -> 7.5-dev-20200527-01-g1dfc386a3-0~deb10u1

@Spantik Spantik requested a review from sworleys June 2, 2020 15:22
@sworleys
Copy link
Member

sworleys commented Jul 7, 2020

We cannot install the nexthop address as Mapped IP in the Kernel, so we are installing with nexthop/ gateway as device for now. In the kernel there is no support for sending IPv6 packets/ traffic over IPv4 nexthop address.

Are you sure? I believe I tested it on a ~5.x a while back when one of the issues were raised and it worked (with traffic flow).

see #6382 for my comment.

If it does work, I would like to see it implemented in rt_netlink.c as well.

Also, you need to cleanup your commit messages to conform to our style guide, as well as your code style.
http://docs.frrouting.org/projects/dev-guide/en/latest/workflow.html#coding-practices-style

@KaushikNiral
Copy link
Member Author

KaushikNiral commented Jul 13, 2020

We cannot install the nexthop address as Mapped IP in the Kernel, so we are installing with nexthop/ gateway as device for now. In the kernel there is no support for sending IPv6 packets/ traffic over IPv4 nexthop address.

Are you sure? I believe I tested it on a ~5.x a while back when one of the issues were raised and it worked (with traffic flow).

see #6382 for my comment.

If it does work, I would like to see it implemented in rt_netlink.c as well.

Also, you need to cleanup your commit messages to conform to our style guide, as well as your code style.
http://docs.frrouting.org/projects/dev-guide/en/latest/workflow.html#coding-practices-style

Hi,
We have tested it on kernel 5.0 and 5.3, we see in both cases it is not working.

Command: " sudo ip -6 route add 4444::1/64 via ::ffff:172.16.212.2 dev vmnet11 "

Please find the screenshot attached.

ipv6_mapped_route_add

ipv6_mapped_gateway_kernel_5 3

Please suggest if anything wrong.

Thanks,

@KaushikNiral
Copy link
Member Author

Hi @sworleys ,

Please find the reply of your queries raised above.

Thanks,
Kaushik

Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution to FRR!

  • One of your commits has an improperly formatted commit message
Click for style suggestions

To apply these suggestions:

curl -s https://gist.githubusercontent.com/polychaeta/ec1bc8636aa32dcb866adfdf785b2208/raw/cd90a069119b20b9ea644ab59a377415f46a9635/cr_6454_1596026458.diff | git apply

diff --git a/zebra/rt_netlink.c b/zebra/rt_netlink.c
index b35eab241..0de3159f7 100644
--- a/zebra/rt_netlink.c
+++ b/zebra/rt_netlink.c
@@ -1051,19 +1051,19 @@ static bool _netlink_route_add_gateway_info(uint8_t route_family,
 				 bytelen + 2))
 			return false;
 	} else {
-    if (!(nexthop->rparent
+		if (!(nexthop->rparent
 		      && IS_MAPPED_IPV6(&nexthop->rparent->gate.ipv6))) {
 			if (gw_family == AF_INET) {
-        if (!nl_attr_put(nlmsg, req_size, RTA_GATEWAY,
-					 &nexthop->gate.ipv4, bytelen))
-				return false;
-      } else {
-        if (!nl_attr_put(nlmsg, req_size, RTA_GATEWAY,
-					 &nexthop->gate.ipv6, bytelen))
-				return false;
-      }
-    }
-  }
+				if (!nl_attr_put(nlmsg, req_size, RTA_GATEWAY,
+						 &nexthop->gate.ipv4, bytelen))
+					return false;
+			} else {
+				if (!nl_attr_put(nlmsg, req_size, RTA_GATEWAY,
+						 &nexthop->gate.ipv6, bytelen))
+					return false;
+			}
+		}
+	}
 	return true;
 }
 
diff --git a/zebra/zebra_fpm_netlink.c b/zebra/zebra_fpm_netlink.c
index 3f340df27..d42860dd7 100644
--- a/zebra/zebra_fpm_netlink.c
+++ b/zebra/zebra_fpm_netlink.c
@@ -427,10 +427,10 @@ static int netlink_route_info_encode(struct netlink_route_info *ri,
 				ipv4_to_ipv4_mapped_ipv6(&ipv6,
 							 nhi->gateway->ipv4);
 				nl_attr_put(&req->n, in_buf_len, RTA_GATEWAY,
-					  &ipv6, bytelen);
+					    &ipv6, bytelen);
 			} else
-        nl_attr_put(&req->n, in_buf_len, RTA_GATEWAY,
-				    nhi->gateway, bytelen);
+				nl_attr_put(&req->n, in_buf_len, RTA_GATEWAY,
+					    nhi->gateway, bytelen);
 		}
 
 		if (nhi->if_index) {

If you are a new contributor to FRR, please see our contributing guidelines.

1. Indentation resolved on conflict merge.

Signed-off-by: Kaushik <kaushik@niralnetworks.com>
Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution to FRR!

  • One of your commits has an improperly formatted commit message

If you are a new contributor to FRR, please see our contributing guidelines.

@LabN-CI
Copy link
Collaborator

LabN-CI commented Jul 29, 2020

Outdated results 🛑

Basic BGPD CI results: FAILURE

_ _
Result FAILURE git merge/6454 bc64f54 frr.github Build
Date 07/29/2020
Start 08:55:37
Finish 08:56:36
Run-Time 00:59
Total
Pass
Fail
Valgrind-Errors
Valgrind-Loss
Details vncregress-2020-07-29-08:55:37.txt
Log make-2020-07-29-08:55:37.out.bz2
Memory

For details, please contact louberger

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Jul 29, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Failed

Ubuntu 16.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
Fedora 29 amd64 build: Failed (click for details)

Make failed for Fedora 29 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization of const struct prefix * from int makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:7835: bgpd/bgp_nht.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'
make: *** [Makefile:4664: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/F29BUILD/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI009BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function 'make_prefix':
bgpd/bgp_nht.c:540:32: error: implicit declaration of function 'bgp_node_get_prefix'; did you mean 'bgp_dest_get_prefix'? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization of 'const struct prefix *' from 'int' makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:7835: bgpd/bgp_nht.o] Error 1
gmake[1]: Leaving directory '/usr/home/ci/cibuild.13367/frr-source'
gmake[1]: Target 'all-am' not remade because of errors.
gmake: *** [Makefile:4664: all] Error 2

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI009BUILD/config.status/config.status

Ubuntu 16.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
FreeBSD 12 amd64 build: Failed (click for details)

Make failed for FreeBSD 12 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function 'make_prefix':
bgpd/bgp_nht.c:540:32: error: implicit declaration of function 'bgp_node_get_prefix'; did you mean 'bgp_dest_get_prefix'? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:7835: bgpd/bgp_nht.o] Error 1
gmake[1]: Leaving directory '/usr/home/ci/cibuild.13367/frr-source'
gmake[1]: Target 'all-am' not remade because of errors.
gmake: *** [Makefile:4664: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/FBSD12AMD64/config.status/config.status

Debian 10 amd64 build: Failed (click for details)

Make failed for Debian 10 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization of const struct prefix * from int makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:7836: bgpd/bgp_nht.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4665: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/DEB10BUILD/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

Make failed for NetBSD 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI012BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function 'make_prefix':
bgpd/bgp_nht.c:540:32: error: implicit declaration of function 'bgp_node_get_prefix' [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:7835: bgpd/bgp_nht.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:13159: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13169: warning: @image file `frr-figures/fig_topologies_full.txt' (for text) unreadable: No such file or directory.

NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI012BUILD/config.status/config.status

Ubuntu 16.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 16.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI014BUILD/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 18.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U1804AMD64/config.status/config.status

Ubuntu 16.04 i386 build: Failed (click for details)

Make failed for Ubuntu 16.04 i386 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U1604I386/config.status/config.status

CentOS 7 amd64 build: Failed (click for details)

Make failed for CentOS 7 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI005BUILD/ErrorLog/log_make.txt)

bgpd/libbgp.a(bgp_nht.o): In function `make_prefix':
/home/ci/cibuild.13367/frr-source/bgpd/bgp_nht.c:540: undefined reference to `bgp_node_get_prefix'
collect2: error: ld returned 1 exit status
make[1]: *** [bgpd/bgp_btoa] Error 1
bgpd/libbgp.a(bgp_nht.o): In function `make_prefix':
/home/ci/cibuild.13367/frr-source/bgpd/bgp_nht.c:540: undefined reference to `bgp_node_get_prefix'
collect2: error: ld returned 1 exit status
make[1]: *** [bgpd/bgpd] Error 1
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/user/_build/texinfo/frr.texi

CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI005BUILD/config.status/config.status

Ubuntu 18.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
Debian 8 amd64 build: Failed (click for details)

Make failed for Debian 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:15: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror]
cc1: all warnings being treated as errors
Makefile:7329: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI008BLD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
Ubuntu 18.04 ppc64le build: Failed (click for details)

Make failed for Ubuntu 18.04 ppc64le build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U1804PPC64LEBUILD/config.status/config.status

Debian 9 amd64 build: Failed (click for details)

Make failed for Debian 9 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI021BUILD/config.status/config.status

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization of const struct prefix * from int makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:7836: bgpd/bgp_nht.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4665: all] Error 2
OpenBSD 6 amd64 build: Failed (click for details)

Make failed for OpenBSD 6 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c:540:32: error: implicit declaration of function 'bgp_node_get_prefix' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
bgpd/bgp_nht.c:540:32: note: did you mean 'bgp_dest_get_prefix'?
bgpd/bgp_table.h:465:36: note: 'bgp_dest_get_prefix' declared here
static inline const struct prefix *bgp_dest_get_prefix(const struct bgp_dest *dest)
bgpd/bgp_nht.c:540:23: error: incompatible integer to pointer conversion initializing 'const struct prefix *' with an expression of type 'int' [-Werror,-Wint-conversion]
2 errors generated.
gmake[1]: *** [Makefile:7834: bgpd/bgp_nht.o] Error 1

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI011BUILD/config.status/config.status

Warnings Generated during build:

Checkout code: Successful with additional warnings
Ubuntu 16.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
Fedora 29 amd64 build: Failed (click for details)

Make failed for Fedora 29 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization of const struct prefix * from int makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:7835: bgpd/bgp_nht.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'
make: *** [Makefile:4664: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/F29BUILD/config.status/config.status

FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI009BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function 'make_prefix':
bgpd/bgp_nht.c:540:32: error: implicit declaration of function 'bgp_node_get_prefix'; did you mean 'bgp_dest_get_prefix'? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization of 'const struct prefix *' from 'int' makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:7835: bgpd/bgp_nht.o] Error 1
gmake[1]: Leaving directory '/usr/home/ci/cibuild.13367/frr-source'
gmake[1]: Target 'all-am' not remade because of errors.
gmake: *** [Makefile:4664: all] Error 2

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI009BUILD/config.status/config.status

Ubuntu 16.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
FreeBSD 12 amd64 build: Failed (click for details)

Make failed for FreeBSD 12 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function 'make_prefix':
bgpd/bgp_nht.c:540:32: error: implicit declaration of function 'bgp_node_get_prefix'; did you mean 'bgp_dest_get_prefix'? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:7835: bgpd/bgp_nht.o] Error 1
gmake[1]: Leaving directory '/usr/home/ci/cibuild.13367/frr-source'
gmake[1]: Target 'all-am' not remade because of errors.
gmake: *** [Makefile:4664: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/FBSD12AMD64/config.status/config.status

Debian 10 amd64 build: Failed (click for details)

Make failed for Debian 10 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization of const struct prefix * from int makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:7836: bgpd/bgp_nht.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4665: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/DEB10BUILD/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

Make failed for NetBSD 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI012BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function 'make_prefix':
bgpd/bgp_nht.c:540:32: error: implicit declaration of function 'bgp_node_get_prefix' [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:7835: bgpd/bgp_nht.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:13159: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13169: warning: @image file `frr-figures/fig_topologies_full.txt' (for text) unreadable: No such file or directory.

NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI012BUILD/config.status/config.status

Ubuntu 16.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 16.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI014BUILD/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 18.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U1804AMD64/config.status/config.status

Ubuntu 16.04 i386 build: Failed (click for details)

Make failed for Ubuntu 16.04 i386 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U1604I386/config.status/config.status

CentOS 7 amd64 build: Failed (click for details)

Make failed for CentOS 7 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI005BUILD/ErrorLog/log_make.txt)

bgpd/libbgp.a(bgp_nht.o): In function `make_prefix':
/home/ci/cibuild.13367/frr-source/bgpd/bgp_nht.c:540: undefined reference to `bgp_node_get_prefix'
collect2: error: ld returned 1 exit status
make[1]: *** [bgpd/bgp_btoa] Error 1
bgpd/libbgp.a(bgp_nht.o): In function `make_prefix':
/home/ci/cibuild.13367/frr-source/bgpd/bgp_nht.c:540: undefined reference to `bgp_node_get_prefix'
collect2: error: ld returned 1 exit status
make[1]: *** [bgpd/bgpd] Error 1
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/user/_build/texinfo/frr.texi

CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI005BUILD/config.status/config.status

Ubuntu 18.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
Debian 8 amd64 build: Failed (click for details)

Make failed for Debian 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:15: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror]
cc1: all warnings being treated as errors
Makefile:7329: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI008BLD/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
Ubuntu 18.04 ppc64le build: Failed (click for details)

Make failed for Ubuntu 18.04 ppc64le build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U1804PPC64LEBUILD/config.status/config.status

Debian 9 amd64 build: Failed (click for details)

Make failed for Debian 9 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI021BUILD/config.status/config.status

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization of const struct prefix * from int makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:7836: bgpd/bgp_nht.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.13367/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4665: all] Error 2
OpenBSD 6 amd64 build: Failed (click for details)

Make failed for OpenBSD 6 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/home/ci/cibuild.13367/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c:540:32: error: implicit declaration of function 'bgp_node_get_prefix' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
bgpd/bgp_nht.c:540:32: note: did you mean 'bgp_dest_get_prefix'?
bgpd/bgp_table.h:465:36: note: 'bgp_dest_get_prefix' declared here
static inline const struct prefix *bgp_dest_get_prefix(const struct bgp_dest *dest)
bgpd/bgp_nht.c:540:23: error: incompatible integer to pointer conversion initializing 'const struct prefix *' with an expression of type 'int' [-Werror,-Wint-conversion]
2 errors generated.
gmake[1]: *** [Makefile:7834: bgpd/bgp_nht.o] Error 1

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13367/artifact/CI011BUILD/config.status/config.status

Report for bgp_nht.c | 2 issues
===============================================
< WARNING: braces {} are not necessary for single statement blocks
< #149: FILE: /tmp/f1-12275/bgp_nht.c:149:
Report for rt_netlink.c | 28 issues
===============================================
< WARNING: suspect code indent for conditional statements (8, 4)
< #1053: FILE: /tmp/f1-12275/rt_netlink.c:1053:
< WARNING: please, no spaces at the start of a line
< #1054: FILE: /tmp/f1-12275/rt_netlink.c:1054:
< WARNING: suspect code indent for conditional statements (4, 24)
< #1054: FILE: /tmp/f1-12275/rt_netlink.c:1054:
< WARNING: suspect code indent for conditional statements (24, 8)
< #1056: FILE: /tmp/f1-12275/rt_netlink.c:1056:
< ERROR: code indent should use tabs where possible
< #1057: FILE: /tmp/f1-12275/rt_netlink.c:1057:
< WARNING: please, no spaces at the start of a line
< #1057: FILE: /tmp/f1-12275/rt_netlink.c:1057:
< WARNING: suspect code indent for conditional statements (8, 32)
< #1057: FILE: /tmp/f1-12275/rt_netlink.c:1057:
< WARNING: please, no spaces at the start of a line
< #1060: FILE: /tmp/f1-12275/rt_netlink.c:1060:
< ERROR: code indent should use tabs where possible
< #1061: FILE: /tmp/f1-12275/rt_netlink.c:1061:
< WARNING: please, no spaces at the start of a line
< #1061: FILE: /tmp/f1-12275/rt_netlink.c:1061:
< WARNING: suspect code indent for conditional statements (8, 32)
< #1061: FILE: /tmp/f1-12275/rt_netlink.c:1061:
< WARNING: please, no spaces at the start of a line
< #1064: FILE: /tmp/f1-12275/rt_netlink.c:1064:
< WARNING: please, no spaces at the start of a line
< #1065: FILE: /tmp/f1-12275/rt_netlink.c:1065:
< WARNING: please, no spaces at the start of a line
< #1066: FILE: /tmp/f1-12275/rt_netlink.c:1066:
Report for zebra_fpm_netlink.c | 6 issues
===============================================
< WARNING: suspect code indent for conditional statements (24, 8)
< #431: FILE: /tmp/f1-12275/zebra_fpm_netlink.c:431:
< ERROR: code indent should use tabs where possible
< #432: FILE: /tmp/f1-12275/zebra_fpm_netlink.c:432:
< WARNING: please, no spaces at the start of a line
< #432: FILE: /tmp/f1-12275/zebra_fpm_netlink.c:432:
Report for zebra_nhg.c | 2 issues
===============================================
< WARNING: braces {} are not necessary for single statement blocks
< #1840: FILE: /tmp/f1-12275/zebra_nhg.c:1840:

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Jul 29, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Failed

OpenBSD 6 amd64 build: Failed (click for details)

Make failed for OpenBSD 6 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c:540:32: error: implicit declaration of function 'bgp_node_get_prefix' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
bgpd/bgp_nht.c:540:32: note: did you mean 'bgp_dest_get_prefix'?
bgpd/bgp_table.h:465:36: note: 'bgp_dest_get_prefix' declared here
static inline const struct prefix *bgp_dest_get_prefix(const struct bgp_dest *dest)
bgpd/bgp_nht.c:540:23: error: incompatible integer to pointer conversion initializing 'const struct prefix *' with an expression of type 'int' [-Werror,-Wint-conversion]
2 errors generated.
gmake[1]: *** [Makefile:7834: bgpd/bgp_nht.o] Error 1

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI011BUILD/config.status/config.status

Ubuntu 16.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI009BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function 'make_prefix':
bgpd/bgp_nht.c:540:32: error: implicit declaration of function 'bgp_node_get_prefix'; did you mean 'bgp_dest_get_prefix'? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization of 'const struct prefix *' from 'int' makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:7835: bgpd/bgp_nht.o] Error 1
/usr/home/ci/cibuild.13368/frr-source/doc/user/conf.py:368: RemovedInSphinx40Warning: The app.add_stylesheet() is deprecated. Please use app.add_css_file() instead.
/usr/home/ci/cibuild.13368/frr-source/doc/user/conf.py:369: RemovedInSphinx40Warning: The app.add_javascript() is deprecated. Please use app.add_js_file() instead.
/usr/home/ci/cibuild.13368/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI009BUILD/config.status/config.status

Fedora 29 amd64 build: Failed (click for details)

Make failed for Fedora 29 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization of const struct prefix * from int makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:7835: bgpd/bgp_nht.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'
make: *** [Makefile:4664: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/F29BUILD/config.status/config.status

Ubuntu 16.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
Debian 10 amd64 build: Failed (click for details)

Make failed for Debian 10 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization of const struct prefix * from int makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:7836: bgpd/bgp_nht.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4665: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/DEB10BUILD/config.status/config.status

FreeBSD 12 amd64 build: Failed (click for details)

Make failed for FreeBSD 12 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function 'make_prefix':
bgpd/bgp_nht.c:540:32: error: implicit declaration of function 'bgp_node_get_prefix'; did you mean 'bgp_dest_get_prefix'? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:7835: bgpd/bgp_nht.o] Error 1
gmake[1]: Leaving directory '/usr/home/ci/cibuild.13368/frr-source'
gmake[1]: Target 'all-am' not remade because of errors.
gmake: *** [Makefile:4664: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/FBSD12AMD64/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

Make failed for NetBSD 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI012BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function 'make_prefix':
bgpd/bgp_nht.c:540:32: error: implicit declaration of function 'bgp_node_get_prefix' [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:7835: bgpd/bgp_nht.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:13159: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13169: warning: @image file `frr-figures/fig_topologies_full.txt' (for text) unreadable: No such file or directory.

NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI012BUILD/config.status/config.status

Ubuntu 16.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 16.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI014BUILD/config.status/config.status

Ubuntu 16.04 i386 build: Failed (click for details)

Make failed for Ubuntu 16.04 i386 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U1604I386/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 18.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U1804AMD64/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
CentOS 7 amd64 build: Failed (click for details)

Make failed for CentOS 7 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI005BUILD/ErrorLog/log_make.txt)

bgpd/libbgp.a(bgp_nht.o): In function `make_prefix':
/home/ci/cibuild.13368/frr-source/bgpd/bgp_nht.c:540: undefined reference to `bgp_node_get_prefix'
collect2: error: ld returned 1 exit status
make[1]: *** [bgpd/bgp_btoa] Error 1
bgpd/libbgp.a(bgp_nht.o): In function `make_prefix':
/home/ci/cibuild.13368/frr-source/bgpd/bgp_nht.c:540: undefined reference to `bgp_node_get_prefix'
collect2: error: ld returned 1 exit status
make[1]: *** [bgpd/bgpd] Error 1
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/user/_build/texinfo/frr.texi

CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI005BUILD/config.status/config.status

Ubuntu 18.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
Debian 9 amd64 build: Failed (click for details)

Make failed for Debian 9 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI021BUILD/config.status/config.status

Debian 8 amd64 build: Failed (click for details)

Make failed for Debian 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:15: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror]
cc1: all warnings being treated as errors
Makefile:7329: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI008BLD/config.status/config.status

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization of const struct prefix * from int makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:7836: bgpd/bgp_nht.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4665: all] Error 2
Ubuntu 18.04 ppc64le build: Failed (click for details)

Make failed for Ubuntu 18.04 ppc64le build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U1804PPC64LEBUILD/config.status/config.status

Warnings Generated during build:

Checkout code: Successful with additional warnings
OpenBSD 6 amd64 build: Failed (click for details)

Make failed for OpenBSD 6 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI011BUILD/ErrorLog/log_make.txt)

gmake[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c:540:32: error: implicit declaration of function 'bgp_node_get_prefix' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
bgpd/bgp_nht.c:540:32: note: did you mean 'bgp_dest_get_prefix'?
bgpd/bgp_table.h:465:36: note: 'bgp_dest_get_prefix' declared here
static inline const struct prefix *bgp_dest_get_prefix(const struct bgp_dest *dest)
bgpd/bgp_nht.c:540:23: error: incompatible integer to pointer conversion initializing 'const struct prefix *' with an expression of type 'int' [-Werror,-Wint-conversion]
2 errors generated.
gmake[1]: *** [Makefile:7834: bgpd/bgp_nht.o] Error 1

OpenBSD 6 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI011BUILD/config.status/config.status

Ubuntu 16.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U16ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
FreeBSD 11 amd64 build: Failed (click for details)

Make failed for FreeBSD 11 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI009BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function 'make_prefix':
bgpd/bgp_nht.c:540:32: error: implicit declaration of function 'bgp_node_get_prefix'; did you mean 'bgp_dest_get_prefix'? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization of 'const struct prefix *' from 'int' makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:7835: bgpd/bgp_nht.o] Error 1
/usr/home/ci/cibuild.13368/frr-source/doc/user/conf.py:368: RemovedInSphinx40Warning: The app.add_stylesheet() is deprecated. Please use app.add_css_file() instead.
/usr/home/ci/cibuild.13368/frr-source/doc/user/conf.py:369: RemovedInSphinx40Warning: The app.add_javascript() is deprecated. Please use app.add_js_file() instead.
/usr/home/ci/cibuild.13368/frr-source/doc/user/eigrpd.rst:127: WARNING: duplicate clicmd description of redistribute kernel, other instance in bgp

FreeBSD 11 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI009BUILD/config.status/config.status

Fedora 29 amd64 build: Failed (click for details)

Make failed for Fedora 29 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/F29BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization of const struct prefix * from int makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:7835: bgpd/bgp_nht.o] Error 1
make[1]: Target 'all-am' not remade because of errors.
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'
make: *** [Makefile:4664: all] Error 2

Fedora 29 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/F29BUILD/config.status/config.status

Ubuntu 16.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 16.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI101BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
Debian 10 amd64 build: Failed (click for details)

Make failed for Debian 10 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/DEB10BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization of const struct prefix * from int makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:7836: bgpd/bgp_nht.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4665: all] Error 2

Debian 10 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/DEB10BUILD/config.status/config.status

FreeBSD 12 amd64 build: Failed (click for details)

Make failed for FreeBSD 12 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/FBSD12AMD64/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function 'make_prefix':
bgpd/bgp_nht.c:540:32: error: implicit declaration of function 'bgp_node_get_prefix'; did you mean 'bgp_dest_get_prefix'? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:7835: bgpd/bgp_nht.o] Error 1
gmake[1]: Leaving directory '/usr/home/ci/cibuild.13368/frr-source'
gmake[1]: Target 'all-am' not remade because of errors.
gmake: *** [Makefile:4664: all] Error 2

FreeBSD 12 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/FBSD12AMD64/config.status/config.status

NetBSD 8 amd64 build: Failed (click for details)

Make failed for NetBSD 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI012BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function 'make_prefix':
bgpd/bgp_nht.c:540:32: error: implicit declaration of function 'bgp_node_get_prefix' [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
gmake[1]: *** [Makefile:7835: bgpd/bgp_nht.o] Error 1
doc/user/_build/texinfo/frr.texi:5: warning: unrecognized encoding name `UTF-8'.
doc/user/_build/texinfo/frr.texi:13159: warning: @image file `frr-figures/fig-normal-processing.txt' (for text) unreadable: No such file or directory.
doc/user/_build/texinfo/frr.texi:13169: warning: @image file `frr-figures/fig_topologies_full.txt' (for text) unreadable: No such file or directory.

NetBSD 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI012BUILD/config.status/config.status

Ubuntu 16.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 16.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI014BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'

Ubuntu 16.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI014BUILD/config.status/config.status

Ubuntu 16.04 i386 build: Failed (click for details)

Make failed for Ubuntu 16.04 i386 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U1604I386/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'

Ubuntu 16.04 i386 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U1604I386/config.status/config.status

Ubuntu 18.04 amd64 build: Failed (click for details)

Make failed for Ubuntu 18.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U1804AMD64/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'

Ubuntu 18.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U1804AMD64/config.status/config.status

Ubuntu 18.04 arm8 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm8 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U18ARM8BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
CentOS 7 amd64 build: Failed (click for details)

Make failed for CentOS 7 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI005BUILD/ErrorLog/log_make.txt)

bgpd/libbgp.a(bgp_nht.o): In function `make_prefix':
/home/ci/cibuild.13368/frr-source/bgpd/bgp_nht.c:540: undefined reference to `bgp_node_get_prefix'
collect2: error: ld returned 1 exit status
make[1]: *** [bgpd/bgp_btoa] Error 1
bgpd/libbgp.a(bgp_nht.o): In function `make_prefix':
/home/ci/cibuild.13368/frr-source/bgpd/bgp_nht.c:540: undefined reference to `bgp_node_get_prefix'
collect2: error: ld returned 1 exit status
make[1]: *** [bgpd/bgpd] Error 1
deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.deprecation warning: io.FileInput() argument `handle_io_errors` is ignored since "Docutils 0.10 (2012-12-16)" and will soon be removed.  SPHINX   doc/user/_build/texinfo/frr.texi

CentOS 7 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI005BUILD/config.status/config.status

Ubuntu 18.04 arm7 build: Failed (click for details)

Make failed for Ubuntu 18.04 arm7 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U18ARM7BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Target 'all-am' not remade because of errors.
Debian 9 amd64 build: Failed (click for details)

Make failed for Debian 9 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI021BUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'

Debian 9 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI021BUILD/config.status/config.status

Debian 8 amd64 build: Failed (click for details)

Make failed for Debian 8 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI008BLD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:15: error: implicit declaration of function bgp_node_get_prefix [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror]
cc1: all warnings being treated as errors
Makefile:7329: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'

Debian 8 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/CI008BLD/config.status/config.status

Ubuntu 20.04 amd64 build: Failed (click for details) Ubuntu 20.04 amd64 build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U2004AMD64BUILD/config.status/config.status

Make failed for Ubuntu 20.04 amd64 build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U2004AMD64BUILD/ErrorLog/log_make.txt)

copying selected object files to avoid basename conflicts...
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization of const struct prefix * from int makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
make[1]: *** [Makefile:7836: bgpd/bgp_nht.o] Error 1
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'
make[1]: Target 'all-am' not remade because of errors.
make: *** [Makefile:4665: all] Error 2
Ubuntu 18.04 ppc64le build: Failed (click for details)

Make failed for Ubuntu 18.04 ppc64le build:
(see full Make log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U1804PPC64LEBUILD/ErrorLog/log_make.txt)

make[1]: Entering directory '/home/ci/cibuild.13368/frr-source'
bgpd/bgp_nht.c: In function make_prefix:
bgpd/bgp_nht.c:540:32: error: implicit declaration of function bgp_node_get_prefix; did you mean bgp_dest_get_prefix? [-Werror=implicit-function-declaration]
bgpd/bgp_nht.c:540:32: error: initialization makes pointer from integer without a cast [-Werror=int-conversion]
cc1: all warnings being treated as errors
Makefile:7342: recipe for target 'bgpd/bgp_nht.o' failed
make[1]: *** [bgpd/bgp_nht.o] Error 1
copying selected object files to avoid basename conflicts...
make[1]: Leaving directory '/home/ci/cibuild.13368/frr-source'

Ubuntu 18.04 ppc64le build: config.status output from configure script can be found at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13368/artifact/U1804PPC64LEBUILD/config.status/config.status

Report for bgp_nht.c | 2 issues
===============================================
< WARNING: braces {} are not necessary for single statement blocks
< #149: FILE: /tmp/f1-17482/bgp_nht.c:149:
Report for zebra_nhg.c | 2 issues
===============================================
< WARNING: braces {} are not necessary for single statement blocks
< #1840: FILE: /tmp/f1-17482/zebra_nhg.c:1840:

1. CI errors resolved.
2. Merge conflict related issue resolved.

Signed-off-by: Kaushik <kaushik@niralnetworks.com>
Copy link

@polychaeta polychaeta left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution to FRR!

  • One of your commits has an improperly formatted commit message

If you are a new contributor to FRR, please see our contributing guidelines.

@LabN-CI
Copy link
Collaborator

LabN-CI commented Jul 29, 2020

💚 Basic BGPD CI results: SUCCESS, 0 tests failed

Results table
_ _
Result SUCCESS git merge/6454 e83a6fa
Date 07/29/2020
Start 10:41:46
Finish 11:07:40
Run-Time 25:54
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2020-07-29-10:41:46.txt
Log autoscript-2020-07-29-10:42:45.log.bz2
Memory 484 457 425

For details, please contact louberger

@KaushikNiral
Copy link
Member Author

Closing this PR because there was some issue while merging.
So raised a fresh PR #6821 for it.

Hi @sworleys ,

Request you to have a look on the new PR #6821.

Thanks,

@NetDEF-CI
Copy link
Collaborator

Continuous Integration Result: FAILED

See below for issues.
CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13372/

This is a comment from an automated CI system.
For questions and feedback in regards to this CI system, please feel free to email
Martin Winter - mwinter (at) opensourcerouting.org.

Get source / Pull Request: Successful

Building Stage: Successful

Basic Tests: Failed

Topo tests part 0 on Ubuntu 18.04 arm8: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO0U18ARM8-13372/test

Topology Tests failed for Topo tests part 0 on Ubuntu 18.04 arm8:

*** Error setting resource limits. Mininet's performance may be affected.
*** defaultIntf: warning: r1 has no interfaces
2020-07-29 14:41:54,583 ERROR: assert failed at "evpn_type5_test_topo1.test_evpn_type5_chaos_topo1/test_verify_overlay_index_p1": Testcase test_verify_overlay_index_p1 :Failed 
   Error: No output for 'show bgp l2vpn evpn 10.1.1.1 json' cli
assert "No output for 'show bgp l2vpn evpn 10.1.1.1 json' cli" is True
2020-07-29 14:44:40,331 ERROR: assert failed at "evpn_type5_test_topo1.test_evpn_type5_topo1/test_RD_verification_manual_and_auto_p0": Testcase test_RD_verification_manual_and_auto_p0 :Failed 
   Error: No output for 'show bgp l2vpn evpn 10.1.1.1 json' cli
assert "No output for 'show bgp l2vpn evpn 10.1.1.1 json' cli" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13372/artifact/TOPO0U18ARM8/ErrorLog/log_topotests.txt

Successful on other platforms/tests
  • Topo tests part 1 on Ubuntu 16.04 amd64
  • Fedora 29 rpm pkg check
  • Addresssanitizer topotests part 1
  • IPv6 protocols on Ubuntu 18.04
  • Debian 8 deb pkg check
  • IPv4 protocols on Ubuntu 18.04
  • Topo tests part 0 on Ubuntu 16.04 amd64
  • Topo tests part 1 on Ubuntu 18.04 arm8
  • Static analyzer (clang)
  • Ubuntu 20.04 deb pkg check
  • Ubuntu 16.04 deb pkg check
  • Topo tests part 2 on Ubuntu 18.04 arm8
  • Topo tests part 2 on Ubuntu 16.04 i386
  • Topo tests part 0 on Ubuntu 18.04 amd64
  • Topo tests part 1 on Ubuntu 16.04 i386
  • Topo tests part 1 on Ubuntu 18.04 amd64
  • Ubuntu 18.04 deb pkg check
  • Addresssanitizer topotests part 2
  • Topo tests part 2 on Ubuntu 16.04 amd64
  • CentOS 7 rpm pkg check
  • Debian 10 deb pkg check
  • IPv4 ldp protocol on Ubuntu 18.04
  • Debian 9 deb pkg check
  • Addresssanitizer topotests part 0
  • Topo tests part 2 on Ubuntu 18.04 amd64
  • Topo tests part 0 on Ubuntu 16.04 i386

Warnings Generated during build:

Checkout code: Successful with additional warnings
Topo tests part 0 on Ubuntu 18.04 arm8: Failed (click for details)

Topology Test Results are at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-TOPO0U18ARM8-13372/test

Topology Tests failed for Topo tests part 0 on Ubuntu 18.04 arm8:

*** Error setting resource limits. Mininet's performance may be affected.
*** defaultIntf: warning: r1 has no interfaces
2020-07-29 14:41:54,583 ERROR: assert failed at "evpn_type5_test_topo1.test_evpn_type5_chaos_topo1/test_verify_overlay_index_p1": Testcase test_verify_overlay_index_p1 :Failed 
   Error: No output for 'show bgp l2vpn evpn 10.1.1.1 json' cli
assert "No output for 'show bgp l2vpn evpn 10.1.1.1 json' cli" is True
2020-07-29 14:44:40,331 ERROR: assert failed at "evpn_type5_test_topo1.test_evpn_type5_topo1/test_RD_verification_manual_and_auto_p0": Testcase test_RD_verification_manual_and_auto_p0 :Failed 
   Error: No output for 'show bgp l2vpn evpn 10.1.1.1 json' cli
assert "No output for 'show bgp l2vpn evpn 10.1.1.1 json' cli" is True

see full log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13372/artifact/TOPO0U18ARM8/ErrorLog/log_topotests.txt

Report for bgp_nht.c | 2 issues
===============================================
< WARNING: braces {} are not necessary for single statement blocks
< #149: FILE: /tmp/f1-24972/bgp_nht.c:149:
Report for zebra_nhg.c | 2 issues
===============================================
< WARNING: braces {} are not necessary for single statement blocks
< #1840: FILE: /tmp/f1-24972/zebra_nhg.c:1840:

Warnings Generated during build:

Debian 10 amd64 build: Successful with additional warnings

Debian Package lintian failed for Debian 10 amd64 build:
(see full package build log at https://ci1.netdef.org/browse/FRR-FRRPULLREQ-13372/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.4.1 (current is 4.3.0)
W: frr source: pkg-js-tools-test-is-missing
W: frr source: newer-standards-version 4.4.1 (current is 4.3.0)
W: frr: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200729-02-ge83a6faa1-0 (missing) -> 7.5-dev-20200729-02-ge83a6faa1-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200729-02-ge83a6faa1-0 (missing) -> 7.5-dev-20200729-02-ge83a6faa1-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200729-02-ge83a6faa1-0 (missing) -> 7.5-dev-20200729-02-ge83a6faa1-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200729-02-ge83a6faa1-0 (missing) -> 7.5-dev-20200729-02-ge83a6faa1-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 6.0-2 -> 7.5-dev-20200729-02-ge83a6faa1-0 (missing) -> 7.5-dev-20200729-02-ge83a6faa1-0~deb10u1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants