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

[7.2] backport gcc-10 fixes #6284

Merged
merged 9 commits into from
May 6, 2020

Conversation

eqvinox
Copy link
Contributor

@eqvinox eqvinox commented Apr 23, 2020

No description provided.

rubenk and others added 9 commits April 23, 2020 19:13
GCC 10 switched to -fno-common by default, see
https://gcc.gnu.org/gcc-10/porting_to.html#common for details.

Fixes:
  CCLD     ldpd/ldpd
/usr/bin/ld: ldpd/libldp.a(adjacency.o):/home/ruben/src/frr/ldpd/ldpe.h:294: multiple definition of `pkt_ptr'; ldpd/ldpd.o:/home/ruben/src/frr/ldpd/ldpe.h:294: first defined here

Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
(cherry picked from commit 56b7d72)
Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
(cherry picked from commit 9635de6)
Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
(cherry picked from commit 54ca644)
This fixes the last issue compiling FRR with GCC 10 on Fedora Rawhide.

Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
(cherry picked from commit f3faea7)
- Add extern modifier to some declarations in header file and move
qpim_all_pim_routers_addr definition to pimd/pimd.c

`GCC now defaults to -fno-common. As a result, global variable accesses
are more efficient on various targets. In C, global variables with
multiple tentative definitions now result in linker errors.`
Taken from https://gcc.gnu.org/gcc-10/changes.html

Signed-off-by: Tomas Korbar <tkorbar@redhat.com>
(cherry picked from commit 403242d)
This fixes a linking issue on Fedora Rawhide:
/usr/bin/ld: bgpd/libbgp.a(bgp_flowspec.o):/home/ruben/src/frr/./bgpd/bgp_attr_evpn.h:37: multiple definition of `eth_tag_id'; bgpd/bgp_btoa-bgp_btoa.o:/home/ruben/src/frr/./bgpd/bgp_attr_evpn.h:37: first defined here
collect2: error: ld returned 1 exit status

Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
(cherry picked from commit 01feb09)
Fixes the following linker errors:
/usr/bin/ld: babeld/libbabel.a(babel_interface.o):/home/ruben/src/frr/babeld/util.h:125: multiple definition of `v4prefix'; babeld/babel_main.o:/home/ruben/src/frr/babeld/util.h:125: first defined here
/usr/bin/ld: babeld/libbabel.a(babel_zebra.o):/home/ruben/src/frr/babeld/util.h:125: multiple definition of `v4prefix'; babeld/babel_main.o:/home/ruben/src/frr/babeld/util.h:125: first defined here
/usr/bin/ld: babeld/libbabel.a(babeld.o):/home/ruben/src/frr/babeld/util.h:125: multiple definition of `v4prefix'; babeld/babel_main.o:/home/ruben/src/frr/babeld/util.h:125: first defined here
/usr/bin/ld: babeld/libbabel.a(kernel.o):/home/ruben/src/frr/babeld/util.h:125: multiple definition of `v4prefix'; babeld/babel_main.o:/home/ruben/src/frr/babeld/util.h:125: first defined here
/usr/bin/ld: babeld/libbabel.a(message.o):/home/ruben/src/frr/babeld/util.h:125: multiple definition of `v4prefix'; babeld/babel_main.o:/home/ruben/src/frr/babeld/util.h:125: first defined here
/usr/bin/ld: babeld/libbabel.a(neighbour.o):/home/ruben/src/frr/babeld/util.h:125: multiple definition of `v4prefix'; babeld/babel_main.o:/home/ruben/src/frr/babeld/util.h:125: first defined here
/usr/bin/ld: babeld/libbabel.a(net.o):/home/ruben/src/frr/babeld/util.h:125: multiple definition of `v4prefix'; babeld/babel_main.o:/home/ruben/src/frr/babeld/util.h:125: first defined here
/usr/bin/ld: babeld/libbabel.a(resend.o):/home/ruben/src/frr/babeld/util.h:125: multiple definition of `v4prefix'; babeld/babel_main.o:/home/ruben/src/frr/babeld/util.h:125: first defined here
/usr/bin/ld: babeld/libbabel.a(route.o):/home/ruben/src/frr/babeld/util.h:125: multiple definition of `v4prefix'; babeld/babel_main.o:/home/ruben/src/frr/babeld/util.h:125: first defined here
/usr/bin/ld: babeld/libbabel.a(source.o):/home/ruben/src/frr/babeld/util.h:125: multiple definition of `v4prefix'; babeld/babel_main.o:/home/ruben/src/frr/babeld/util.h:125: first defined here
/usr/bin/ld: babeld/libbabel.a(util.o):/home/ruben/src/frr/babeld/util.h:125: multiple definition of `v4prefix'; babeld/babel_main.o:/home/ruben/src/frr/babeld/util.h:125: first defined here
/usr/bin/ld: babeld/libbabel.a(xroute.o):/home/ruben/src/frr/babeld/util.h:125: multiple definition of `v4prefix'; babeld/babel_main.o:/home/ruben/src/frr/babeld/util.h:125: first defined here
/usr/bin/ld: babeld/libbabel.a(babel_filter.o):/home/ruben/src/frr/babeld/util.h:125: multiple definition of `v4prefix'; babeld/babel_main.o:/home/ruben/src/frr/babeld/util.h:125: first defined here
collect2: error: ld returned 1 exit status
make[1]: *** [Makefile:6015: babeld/babeld] Error 1

Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
(cherry picked from commit b0ba81f)
The babel_main_loop function did not have a return for
a non-void function.  For some reason gcc is starting to complain
about this now.

Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
(cherry picked from commit be04d14)
Fixes the following linker errors:
make[1]: Entering directory '/home/ruben/src/frr'
  CCLD     vrrpd/vrrpd
/usr/bin/ld: vrrpd/libvrrp.a(vrrp.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:33: multiple definition of `vrrp_dbg_sock'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:33: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:31: multiple definition of `vrrp_dbg_pkt'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:31: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:32: multiple definition of `vrrp_dbg_proto'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:32: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:34: multiple definition of `vrrp_dbg_zebra'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:34: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:29: multiple definition of `vrrp_dbg_auto'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:29: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:30: multiple definition of `vrrp_dbg_ndisc'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:30: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:28: multiple definition of `vrrp_dbg_arp'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:28: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_arp.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:28: multiple definition of `vrrp_dbg_arp'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:28: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_arp.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:33: multiple definition of `vrrp_dbg_sock'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:33: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_arp.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:34: multiple definition of `vrrp_dbg_zebra'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:34: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_arp.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:32: multiple definition of `vrrp_dbg_proto'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:32: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_arp.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:31: multiple definition of `vrrp_dbg_pkt'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:31: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_arp.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:30: multiple definition of `vrrp_dbg_ndisc'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:30: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_arp.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:29: multiple definition of `vrrp_dbg_auto'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:29: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_debug.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:32: multiple definition of `vrrp_dbg_proto'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:32: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_debug.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:29: multiple definition of `vrrp_dbg_auto'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:29: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_debug.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:31: multiple definition of `vrrp_dbg_pkt'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:31: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_debug.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:33: multiple definition of `vrrp_dbg_sock'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:33: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_debug.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:30: multiple definition of `vrrp_dbg_ndisc'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:30: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_debug.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:28: multiple definition of `vrrp_dbg_arp'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:28: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_debug.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:34: multiple definition of `vrrp_dbg_zebra'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:34: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_ndisc.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:30: multiple definition of `vrrp_dbg_ndisc'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:30: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_ndisc.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:31: multiple definition of `vrrp_dbg_pkt'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:31: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_ndisc.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:33: multiple definition of `vrrp_dbg_sock'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:33: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_ndisc.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:34: multiple definition of `vrrp_dbg_zebra'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:34: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_ndisc.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:32: multiple definition of `vrrp_dbg_proto'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:32: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_ndisc.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:29: multiple definition of `vrrp_dbg_auto'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:29: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_ndisc.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:28: multiple definition of `vrrp_dbg_arp'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:28: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_packet.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:34: multiple definition of `vrrp_dbg_zebra'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:34: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_packet.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:33: multiple definition of `vrrp_dbg_sock'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:33: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_packet.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:32: multiple definition of `vrrp_dbg_proto'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:32: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_packet.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:31: multiple definition of `vrrp_dbg_pkt'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:31: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_packet.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:30: multiple definition of `vrrp_dbg_ndisc'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:30: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_packet.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:29: multiple definition of `vrrp_dbg_auto'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:29: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_packet.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:28: multiple definition of `vrrp_dbg_arp'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:28: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_vty.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:34: multiple definition of `vrrp_dbg_zebra'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:34: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_vty.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:33: multiple definition of `vrrp_dbg_sock'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:33: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_vty.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:32: multiple definition of `vrrp_dbg_proto'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:32: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_vty.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:31: multiple definition of `vrrp_dbg_pkt'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:31: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_vty.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:30: multiple definition of `vrrp_dbg_ndisc'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:30: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_vty.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:29: multiple definition of `vrrp_dbg_auto'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:29: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_vty.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:28: multiple definition of `vrrp_dbg_arp'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:28: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_zebra.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:34: multiple definition of `vrrp_dbg_zebra'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:34: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_zebra.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:33: multiple definition of `vrrp_dbg_sock'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:33: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_zebra.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:32: multiple definition of `vrrp_dbg_proto'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:32: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_zebra.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:31: multiple definition of `vrrp_dbg_pkt'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:31: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_zebra.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:30: multiple definition of `vrrp_dbg_ndisc'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:30: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_zebra.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:29: multiple definition of `vrrp_dbg_auto'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:29: first defined here
/usr/bin/ld: vrrpd/libvrrp.a(vrrp_zebra.o):/home/ruben/src/frr/vrrpd/vrrp_debug.h:28: multiple definition of `vrrp_dbg_arp'; vrrpd/vrrp_main.o:/home/ruben/src/frr/vrrpd/vrrp_debug.h:28: first defined here
collect2: error: ld returned 1 exit status
make[1]: *** [Makefile:6639: vrrpd/vrrpd] Error 1
make[1]: Leaving directory '/home/ruben/src/frr'
make: *** [Makefile:4525: all] Error 2

Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
(cherry picked from commit 744f265)
@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Apr 23, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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

Topotest tests on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topotest tests on Ubuntu 16.04 i386:

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
*** defaultIntf: warning: r1 has no interfaces
2020-04-23 20:12:48,344 ERROR: '_bgp_has_routes' failed after 37.83 seconds
2020-04-23 20:23:40,744 ERROR: 'router_json_cmp' failed after 100.93 seconds
2020-04-23 20:23:40,745 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:43", 
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
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-12017/artifact/TOPOI386/ErrorLog/log_topotests.txt

Topology tests on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topology tests on Ubuntu 16.04 amd64:

*** defaultIntf: warning: r1 has no interfaces
2020-04-23 20:12:28,828 ERROR: '_bgp_has_routes' failed after 36.81 seconds
2020-04-23 20:23:01,455 ERROR: 'router_json_cmp' failed after 98.26 seconds
2020-04-23 20:23:01,456 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:41", 

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

Topology tests on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topology tests on Ubuntu 18.04 amd64:

*** defaultIntf: warning: r1 has no interfaces
2020-04-23 18:12:30,439 ERROR: '_bgp_has_routes' failed after 36.66 seconds
2020-04-23 18:24:20,905 ERROR: 'router_json_cmp' failed after 98.26 seconds
2020-04-23 18:24:20,909 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:41", 

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

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

Warnings Generated during build:

Checkout code: Successful with additional warnings
Topotest tests on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topotest tests on Ubuntu 16.04 i386:

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
*** defaultIntf: warning: r1 has no interfaces
2020-04-23 20:12:48,344 ERROR: '_bgp_has_routes' failed after 37.83 seconds
2020-04-23 20:23:40,744 ERROR: 'router_json_cmp' failed after 100.93 seconds
2020-04-23 20:23:40,745 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:43", 
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
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-12017/artifact/TOPOI386/ErrorLog/log_topotests.txt

Topology tests on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topology tests on Ubuntu 16.04 amd64:

*** defaultIntf: warning: r1 has no interfaces
2020-04-23 20:12:28,828 ERROR: '_bgp_has_routes' failed after 36.81 seconds
2020-04-23 20:23:01,455 ERROR: 'router_json_cmp' failed after 98.26 seconds
2020-04-23 20:23:01,456 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:41", 

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

Topology tests on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topology tests on Ubuntu 18.04 amd64:

*** defaultIntf: warning: r1 has no interfaces
2020-04-23 18:12:30,439 ERROR: '_bgp_has_routes' failed after 36.66 seconds
2020-04-23 18:24:20,905 ERROR: 'router_json_cmp' failed after 98.26 seconds
2020-04-23 18:24:20,909 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:41", 

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

Report for test_mpath.c | 2 issues
===============================================
< WARNING: externs should be avoided in .c files
< #77: FILE: /tmp/f1-17995/test_mpath.c:77:

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-12017/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: pkg-js-tools-test-is-missing
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr: spelling-error-in-readme-debian explecitly explicitly
W: frr-snmp: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1

CLANG Static Analyzer Summary

  • Github Pull Request 6284, comparing to Git base SHA 2f3f691

No Changes in Static Analysis warnings compared to base

1 Static Analyzer issues remaining.

See details at
https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12017/artifact/shared/static_analysis/index.html

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Apr 23, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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

Topotest tests on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topotest tests on Ubuntu 16.04 i386:

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
*** defaultIntf: warning: r1 has no interfaces
2020-04-23 21:27:22,996 ERROR: '_bgp_has_routes' failed after 37.94 seconds
2020-04-23 21:38:08,986 ERROR: 'router_json_cmp' failed after 101.17 seconds
2020-04-23 21:38:08,987 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:44", 
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
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-12017/artifact/TOPOI386/ErrorLog/log_topotests.txt

Topology tests on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topology tests on Ubuntu 16.04 amd64:

*** defaultIntf: warning: r1 has no interfaces
2020-04-23 21:26:59,774 ERROR: '_bgp_has_routes' failed after 37.00 seconds
2020-04-23 21:37:31,086 ERROR: 'router_json_cmp' failed after 98.50 seconds
2020-04-23 21:37:31,087 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:41", 

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

Topology tests on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topology tests on Ubuntu 18.04 amd64:

*** defaultIntf: warning: r1 has no interfaces
2020-04-23 19:27:12,002 ERROR: '_bgp_has_routes' failed after 36.74 seconds
2020-04-23 19:39:14,302 ERROR: 'router_json_cmp' failed after 98.50 seconds
2020-04-23 19:39:14,303 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:41", 

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

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

Warnings Generated during build:

Checkout code: Successful with additional warnings
Topotest tests on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topotest tests on Ubuntu 16.04 i386:

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
*** defaultIntf: warning: r1 has no interfaces
2020-04-23 21:27:22,996 ERROR: '_bgp_has_routes' failed after 37.94 seconds
2020-04-23 21:38:08,986 ERROR: 'router_json_cmp' failed after 101.17 seconds
2020-04-23 21:38:08,987 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:44", 
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
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-12017/artifact/TOPOI386/ErrorLog/log_topotests.txt

Topology tests on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topology tests on Ubuntu 16.04 amd64:

*** defaultIntf: warning: r1 has no interfaces
2020-04-23 21:26:59,774 ERROR: '_bgp_has_routes' failed after 37.00 seconds
2020-04-23 21:37:31,086 ERROR: 'router_json_cmp' failed after 98.50 seconds
2020-04-23 21:37:31,087 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:41", 

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

Topology tests on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topology tests on Ubuntu 18.04 amd64:

*** defaultIntf: warning: r1 has no interfaces
2020-04-23 19:27:12,002 ERROR: '_bgp_has_routes' failed after 36.74 seconds
2020-04-23 19:39:14,302 ERROR: 'router_json_cmp' failed after 98.50 seconds
2020-04-23 19:39:14,303 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:41", 

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

Report for test_mpath.c | 2 issues
===============================================
< WARNING: externs should be avoided in .c files
< #77: FILE: /tmp/f1-17995/test_mpath.c:77:

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-12017/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: pkg-js-tools-test-is-missing
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr: spelling-error-in-readme-debian explecitly explicitly
W: frr-snmp: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1

CLANG Static Analyzer Summary

  • Github Pull Request 6284, comparing to Git base SHA 2f3f691

No Changes in Static Analysis warnings compared to base

1 Static Analyzer issues remaining.

See details at
https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12017/artifact/shared/static_analysis/index.html

@LabN-CI
Copy link
Collaborator

LabN-CI commented Apr 23, 2020

💚 Basic BGPD CI results: SUCCESS, 0 tests failed

Results table
_ _
Result SUCCESS git merge/6284 a960f99
Date 04/23/2020
Start 15:46:18
Finish 16:12:06
Run-Time 25:48
Total 1815
Pass 1815
Fail 0
Valgrind-Errors 0
Valgrind-Loss 0
Details vncregress-2020-04-23-15:46:18.txt
Log autoscript-2020-04-23-15:47:13.log.bz2
Memory 434 428 354

For details, please contact louberger

@eqvinox
Copy link
Contributor Author

eqvinox commented Apr 23, 2020

I have no clue why this fails...

@donaldsharp
Copy link
Member

ci:rerun

@NetDEF-CI
Copy link
Collaborator

NetDEF-CI commented Apr 24, 2020

Continuous Integration Result: FAILED

Continuous Integration Result: FAILED

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

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

Topology tests on Ubuntu 18.04 amd64: Failed (click for details)

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

Topology Tests failed for Topology tests on Ubuntu 18.04 amd64:

*** defaultIntf: warning: r1 has no interfaces
2020-04-24 12:57:14,629 ERROR: '_bgp_has_routes' failed after 36.70 seconds
2020-04-24 13:08:53,545 ERROR: 'router_json_cmp' failed after 100.13 seconds
2020-04-24 13:08:53,546 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:43", 

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

Topotest tests on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topotest tests on Ubuntu 16.04 i386:

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
*** defaultIntf: warning: r1 has no interfaces
2020-04-24 14:56:39,780 ERROR: '_bgp_has_routes' failed after 37.94 seconds
2020-04-24 15:07:36,477 ERROR: 'router_json_cmp' failed after 101.14 seconds
2020-04-24 15:07:36,479 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:44", 
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
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-12031/artifact/TOPOI386/ErrorLog/log_topotests.txt

Topology tests on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topology tests on Ubuntu 16.04 amd64:

*** defaultIntf: warning: r1 has no interfaces
2020-04-24 14:56:13,899 ERROR: '_bgp_has_routes' failed after 36.90 seconds
2020-04-24 15:06:42,626 ERROR: 'router_json_cmp' failed after 98.57 seconds
2020-04-24 15:06:42,628 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:41", 

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

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

Warnings Generated during build:

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

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

Topology Tests failed for Topology tests on Ubuntu 18.04 amd64:

*** defaultIntf: warning: r1 has no interfaces
2020-04-24 12:57:14,629 ERROR: '_bgp_has_routes' failed after 36.70 seconds
2020-04-24 13:08:53,545 ERROR: 'router_json_cmp' failed after 100.13 seconds
2020-04-24 13:08:53,546 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:43", 

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

Topotest tests on Ubuntu 16.04 i386: Failed (click for details)

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

Topology Tests failed for Topotest tests on Ubuntu 16.04 i386:

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
*** defaultIntf: warning: r1 has no interfaces
2020-04-24 14:56:39,780 ERROR: '_bgp_has_routes' failed after 37.94 seconds
2020-04-24 15:07:36,477 ERROR: 'router_json_cmp' failed after 101.14 seconds
2020-04-24 15:07:36,479 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:44", 
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
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-12031/artifact/TOPOI386/ErrorLog/log_topotests.txt

Topology tests on Ubuntu 16.04 amd64: Failed (click for details)

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

Topology Tests failed for Topology tests on Ubuntu 16.04 amd64:

*** defaultIntf: warning: r1 has no interfaces
2020-04-24 14:56:13,899 ERROR: '_bgp_has_routes' failed after 36.90 seconds
2020-04-24 15:06:42,626 ERROR: 'router_json_cmp' failed after 98.57 seconds
2020-04-24 15:06:42,628 ERROR: assert failed at "bgp_vrf_lite_ipv6_rtadv.test_bgp_vrf_lite_ipv6_rtadv/test_protocols_convergence": "r1" JSON output mismatches
assert expected key(s) [u'10.254.254.2/32'] in json (have [u'10.254.254.1/32']):
  --- Expected value
  +++ Current value
  @@ -7,0 +8,2 @@
  +            "internalNextHopActiveNum": 1, 
  +            "internalNextHopNum": 1, 
  @@ -23,24 +25,2 @@
  -            "vrfId": 3
  -        }
  -    ], 
  -    "10.254.254.2/32": [
  -        {
  -            "destSelected": true, 
  -            "distance": 20, 
  -            "installed": true, 
  -            "internalFlags": 8, 
  -            "internalStatus": 16, 
  -            "metric": 0, 
  -            "nexthops": [
  -                {
  -                    "active": true, 
  -                    "afi": "ipv6", 
  -                    "fib": true, 
  -                    "flags": 3, 
  -                    "interfaceIndex": 2, 
  -                    "interfaceName": "r1-eth0"
  -                }
  -            ], 
  -            "prefix": "10.254.254.2/32", 
  -            "protocol": "bgp", 
  -            "selected": true, 
  +            "table": 1001, 
  +            "uptime": "00:01:41", 

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

Report for test_mpath.c | 2 issues
===============================================
< WARNING: externs should be avoided in .c files
< #77: FILE: /tmp/f1-10232/test_mpath.c:77:

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-12031/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: pkg-js-tools-test-is-missing
W: frr-snmp: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr: spelling-error-in-readme-debian explecitly explicitly
W: frr-pythontools: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1

CLANG Static Analyzer Summary

  • Github Pull Request 6284, comparing to Git base SHA 2f3f691

No Changes in Static Analysis warnings compared to base

1 Static Analyzer issues remaining.

See details at
https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12031/artifact/shared/static_analysis/index.html

@eqvinox
Copy link
Contributor Author

eqvinox commented May 6, 2020

CI:rerun

@NetDEF-CI
Copy link
Collaborator

Continuous Integration Result: SUCCESSFUL

Congratulations, this patch passed basic tests

Tested-by: NetDEF / OpenSourceRouting.org CI System

CI System Testrun URL: https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12189/

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.

Warnings Generated during build:

Checkout code: Successful with additional warnings
Report for test_mpath.c | 2 issues
===============================================
< WARNING: externs should be avoided in .c files
< #77: FILE: /tmp/f1-14953/test_mpath.c:77:

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-12189/artifact/DEB10BUILD/ErrorLog/log_lintian.txt)

W: frr source: pkg-js-tools-test-is-missing
W: frr source: pkg-js-tools-test-is-missing
W: frr-rpki-rtrlib: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr-pythontools: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr-snmp: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr-doc: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr: changelog-file-missing-explicit-entry 7.2-1 -> 7.2.1-20200423-08-ga960f99c2-0 (missing) -> 7.2.1-20200423-08-ga960f99c2-0~deb10u1
W: frr: spelling-error-in-readme-debian explecitly explicitly
Ubuntu 20.04 amd64 build: Successful with additional warnings

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

W: frr: spelling-error-in-readme-debian explecitly explicitly

CLANG Static Analyzer Summary

  • Github Pull Request 6284, comparing to Git base SHA 2f3f691

No Changes in Static Analysis warnings compared to base

1 Static Analyzer issues remaining.

See details at
https://ci1.netdef.org/browse/FRR-FRRPULLREQ-12189/artifact/shared/static_analysis/index.html

@mjstapp mjstapp merged commit 756c67c into FRRouting:stable/7.2 May 6, 2020
@eqvinox eqvinox deleted the 7.2/gcc-10 branch April 18, 2021 07:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants