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

New tests #18

Open
wants to merge 40 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
ae1f8c5
bgp: Using variable after free
RodrigoMNardi Jun 26, 2023
dead635
bgp: Using variable after free
RodrigoMNardi Jun 26, 2023
4a4a5d6
doc: updating README.md
RodrigoMNardi Jan 15, 2024
72964f8
doc: updating README.md
RodrigoMNardi Feb 6, 2024
40587de
doc: updating README.md
RodrigoMNardi Feb 6, 2024
7fcf2f8
doc: updating README.md
RodrigoMNardi Feb 7, 2024
bee8679
doc: updating README.md
RodrigoMNardi Feb 7, 2024
0eeb379
doc: updating README.md
RodrigoMNardi Feb 7, 2024
838458e
doc: updating README.md
RodrigoMNardi Feb 7, 2024
f35f376
doc: updating README.md
RodrigoMNardi Feb 7, 2024
d935b6c
doc: updating README.md
RodrigoMNardi Feb 7, 2024
254ff59
doc: updating README.md
RodrigoMNardi Feb 7, 2024
9b7a6ba
doc: updating README.md
RodrigoMNardi Feb 7, 2024
6da40bd
doc: updating README.md
RodrigoMNardi Feb 7, 2024
fe25889
doc: updating README.md
RodrigoMNardi Feb 7, 2024
d4a204c
doc: updating README.md
RodrigoMNardi Feb 7, 2024
9941564
doc: updating README.md
RodrigoMNardi Feb 7, 2024
0b0cde0
doc: updating README.md
RodrigoMNardi Feb 8, 2024
274fb11
doc: updating README.md
RodrigoMNardi Feb 8, 2024
753e4d3
doc: updating README.md
RodrigoMNardi Feb 8, 2024
1015f60
doc: updating README.md
RodrigoMNardi Feb 15, 2024
2d9d84e
doc: updating README.md
RodrigoMNardi Feb 15, 2024
d30d8c6
doc: updating README.md
RodrigoMNardi Feb 16, 2024
cb0b0ae
doc: updating README.md
RodrigoMNardi Feb 16, 2024
7dd1a58
doc: updating README.md
RodrigoMNardi Feb 20, 2024
466b146
doc: updating README.md
RodrigoMNardi Feb 20, 2024
1605c18
doc: updating README.md
RodrigoMNardi Feb 20, 2024
60d0809
doc: updating README.md
RodrigoMNardi Feb 20, 2024
a88761b
doc: updating README.md
RodrigoMNardi Feb 20, 2024
589bf0f
doc: updating README.md
RodrigoMNardi Feb 20, 2024
5e52e6c
doc: updating README.md
RodrigoMNardi Feb 20, 2024
b4d751a
doc: updating README.md
RodrigoMNardi Feb 20, 2024
399ef0b
doc: updating README.md
RodrigoMNardi Feb 20, 2024
c61e99c
doc: updating README.md
RodrigoMNardi Feb 20, 2024
faccf8b
doc: updating README.md
RodrigoMNardi Feb 20, 2024
e208350
doc: updating README.md
RodrigoMNardi Feb 23, 2024
f53ed1f
doc: updating README.md
RodrigoMNardi Feb 26, 2024
18e4285
doc: updating README.md
RodrigoMNardi Mar 13, 2024
6c955a9
memory leak
rzalamena Aug 7, 2024
48e2631
Merge remote-tracking branch 'origin/new_tests' into new_tests
RodrigoMNardi Jan 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,17 @@ For chat, we currently use [Slack](https://frrouting.slack.com). You can join
by clicking the "Slack" link under the
[Participate](https://frrouting.org/community) section of our website.


Contributing
------------


FRR maintains [developer's documentation](http://docs.frrouting.org/projects/dev-guide/en/latest/index.html)
which contains the [project workflow](http://docs.frrouting.org/projects/dev-guide/en/latest/workflow.html)
and expectations for contributors. Some technical documentation on project
internals is also available.

We welcome and appreciate all contributions, no matter how small!


Security
--------

Expand Down
2 changes: 1 addition & 1 deletion bgpd/bgp_bfd.c
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ static void bgp_peer_remove_bfd(struct peer *p)
}

if (p->bfd_config)
bfd_sess_free(&p->bfd_config->session);
bfd_sess_free(&p->bfd_config->session);

XFREE(MTYPE_BFD_CONFIG, p->bfd_config);
}
Expand Down
1 change: 0 additions & 1 deletion bgpd/bgp_vty.c
Original file line number Diff line number Diff line change
Expand Up @@ -16258,7 +16258,6 @@ static int bgp_show_neighbor_vty(struct vty *vty, const char *name,
bgp_show_neighbor(vty, bgp, type, NULL, NULL, use_json,
json);
}
json_object_free(json);
} else {
if (use_json)
vty_out(vty, "{}\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ def _bgp_aggregate_address_has_metric(router):
test_func = functools.partial(_bgp_converge, router)
_, result = topotest.run_and_expect(test_func, None, count=30, wait=0.5)

result = 'BOOOOMMMMMM!!! BGP did not converge!!!'

assert result is None, 'Failed to see bgp convergence in "{}"'.format(router)

test_func = functools.partial(_bgp_aggregate_address_has_metric, router)
Expand Down
Loading