aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Tests: Add missing mockup function to testsOndrej Zajicek (work)2021-02-101-0/+1
|
* Test: Fix unit test mockupsOndrej Zajicek (work)2020-06-031-0/+1
|
* IPv6 address parser: fail on incomplete addressesMaria Matejka2020-05-011-1/+4
|
* Test: Improve filter_testOndrej Zajicek (work)2019-12-173-9/+10
| | | | | | 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.
* Testing measures timesMaria Matejka2019-10-091-7/+30
|
* Testing: Don't call vsnprintf with NULL formatMaria Matejka2019-10-041-1/+2
|
* Fixed undefined behavior on signals.Maria Matejka2019-10-041-0/+5
| | | | | | | | | 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.
* Merge branch 'master' into mq-filter-stackMaria Matejka2019-07-102-13/+8
|\
| * Test: Fixed annoying warnings (and possible obscure bugs).Maria Matejka2019-07-092-5/+4
| |
| * Test: better random u64 generatorMaria Matejka2019-07-092-13/+8
| |
* | Merge branch 'master' into mq-filter-stackMaria Matejka2019-07-031-0/+2
|\|
| * Add mock-up function for unit testsOndrej Zajicek (work)2019-06-301-0/+1
| | | | | | | | They failed without it.
| * Add mock-up function for unit testsOndrej Zajicek (work)2019-06-121-0/+1
| | | | | | | | They failed without it.
* | Test: Added -d flag to die directly after first error.Maria Matejka2019-02-201-2/+11
| |
* | Test: Fixed annoying warnings (and possible obscure bugs).Maria Matejka2019-02-202-5/+4
|/
* Protocol: Introducing an enum protocol_classJan Maria Matejka2018-05-291-2/+2
| | | | This supersedes the EAP_* constants.
* Timers: Fix tests after timer changeOndrej Zajicek (work)2017-12-071-0/+1
|
* Minor cleanupsOndrej Zajicek (work)2016-12-131-1/+1
|
* Birdtest: Replace BT_SUCCESS and BT_FAILURE with 1 and 0Pavel Tvrdik2016-11-112-31/+27
|
* Birdtest: Put hard new lines for strict line widthPavel Tvrdik2016-11-111-9/+23
| | | | | | 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.
* Unit Testing for BIRDOndrej Zajicek (work)2016-11-095-0/+932
- 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.