summaryrefslogtreecommitdiffstats
path: root/tests/check-direct.c
Commit message (Collapse)AuthorAgeFilesLines
* tests: add test for bridge vlan attributes.Cordell O'Leary2024-02-291-0/+127
|
* lib: fix error handling in nl_str2ip_proto()Thomas Haller2023-08-181-2/+2
|
* tests: check nl_str2ip_proto()Thomas Haller2023-08-181-0/+9
|
* include: use <linux/$file> instead of <linux-private/linux/$file>Thomas Haller2023-08-081-1/+1
| | | | | | As we now copy all linux headers, and we have include/linux-private in our include search path, just include the linux headers as we commonly do.
* include: include private linux headers with explicit pathThomas Haller2023-08-031-1/+1
| | | | | | | We have copies of the linux headers in include/linux-private. For those files, include the copies explicitly. No practice there is no difference, since we build with :-Ilinux-private".
* all: cleanup includes and use "nm-default.h"Thomas Haller2023-08-021-3/+5
|
* include: rename "nl-intern-route" to "nl-priv-static-route"Thomas Haller2023-08-021-1/+1
| | | | | Naming is just so important to understand what this is. This name is better.
* include: move "include/netlink-private/route/utils.h" to nl-intern-routeThomas Haller2023-07-311-1/+1
| | | | | | | | | | | | | | | | This header has a very specific purpose. To give access to the unit tests to some internals. It only is usable to parts that statically link with libnl-route-3 sources (e.g. "tests/check-direct") and libnl-route-3 itself. The point is that the symbol there is not exported by the libnl-route-3 shared library, so a test that dynamically links against libnl-route-3 couldn't access them. Hence the internal purpose of static linking the test with libnl-route-3 sources, and a special header for that. Move "include/netlink-private/route/utils.h" to a separate place, to make that usage clearer.
* base: move "netlink-private/utils.h" to "base/nl-base-utils.h"Thomas Haller2023-07-311-1/+1
| | | | | | | | | | "base/nl-base-utils.h" (formerly "netlink-private/utils.h") contains no libnl3 specific references, just a bunch of C helpers. It's also a header-only "library", so it can be freely used by all our C-code. Move it to a separate directory, to make that clear.
* tests: reformat unit test files with clang-formatThomas Haller2022-05-061-6/+9
|
* tests: cleanup creating test suitesThomas Haller2022-03-161-3/+3
|
* route: add test for valid content of map_stat_id_from_IPSTATS_MIB_v2 arrayThomas Haller2020-04-161-0/+32
| | | | | When updating the linux header, it's easy to miss updating the type mapping. Add a test to avoid that.
* tests: add "check-direct" testThomas Haller2020-04-161-0/+34
We already have check-all unit test, which links dynamically to the libraries. That means, certain symbols won't be accessible, because they are hidden by the linker symbol versioning file. Add "check-direct", which links statically against the libraries.