Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-11-22 | Converting the former BFD loop to a universal IO loop and protocol loop. | Maria Matejka | |
There is a simple universal IO loop, taking care of events, timers and sockets. Primarily, one instance of a protocol should use exactly one IO loop to do all its work, as is now done in BFD. Contrary to previous versions, the loop is now launched and cleaned by the nest/proto.c code, allowing for a protocol to just request its own loop by setting the loop's lock order in config higher than the_bird. It is not supported nor checked if any protocol changed the requested lock order in reconfigure. No protocol should do it at all. | |||
2021-10-13 | fixup! Multipage allocation | Maria Matejka | |
2021-09-10 | Reducing filter stack size to allow for lesser thread stack size | Maria Matejka | |
2021-02-10 | Tests: Add missing mockup function to tests | Ondrej Zajicek (work) | |
2020-06-03 | Test: Fix unit test mockups | Ondrej Zajicek (work) | |
2020-05-01 | IPv6 address parser: fail on incomplete addresses | Maria Matejka | |
2019-12-17 | Test: Improve filter_test | Ondrej Zajicek (work) | |
Initial parsing of test.conf must be done directly in filter_test main, while reconfiguration is handled as a regular test. Also fix several minor issues in test code. | |||
2019-10-09 | Testing measures times | Maria Matejka | |
2019-10-04 | Testing: Don't call vsnprintf with NULL format | Maria Matejka | |
2019-10-04 | Fixed undefined behavior on signals. | Maria Matejka | |
The C11 specification allows only sig_atomic_t and _Atomic variable access. All other accesses to global variables are undefined behavior. Using int was probably OK on x86 and x86_64; yet there were some reports from other architectures (especially some MIPS) that in rare cases, after issuing SIGHUP, BIRD did strange things. | |||
2019-07-10 | Merge branch 'master' into mq-filter-stack | Maria Matejka | |
2019-07-09 | Test: Fixed annoying warnings (and possible obscure bugs). | Maria Matejka | |
2019-07-09 | Test: better random u64 generator | Maria Matejka | |
2019-07-03 | Merge branch 'master' into mq-filter-stack | Maria Matejka | |
2019-06-30 | Add mock-up function for unit tests | Ondrej Zajicek (work) | |
They failed without it. | |||
2019-06-12 | Add mock-up function for unit tests | Ondrej Zajicek (work) | |
They failed without it. | |||
2019-02-20 | Test: Added -d flag to die directly after first error. | Maria Matejka | |
2019-02-20 | Test: Fixed annoying warnings (and possible obscure bugs). | Maria Matejka | |
2018-05-29 | Protocol: Introducing an enum protocol_class | Jan Maria Matejka | |
This supersedes the EAP_* constants. | |||
2017-12-07 | Timers: Fix tests after timer change | Ondrej Zajicek (work) | |
2016-12-13 | Minor cleanups | Ondrej Zajicek (work) | |
2016-11-11 | Birdtest: Replace BT_SUCCESS and BT_FAILURE with 1 and 0 | Pavel Tvrdik | |
2016-11-11 | Birdtest: Put hard new lines for strict line width | Pavel Tvrdik | |
This patch ensures width of output lines from testing framework (not debug output). So output piped lined into file that has default width 80 cols is now correctly wrapped. | |||
2016-11-09 | Unit Testing for BIRD | Ondrej Zajicek (work) | |
- Unit Testing Framework (BirdTest) - Integration of BirdTest into the BIRD build system - Tests for several BIRD modules Based on squashed Pavel Tvrdik's int-test branch, updated for current int-new branch. |