Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-07-18 | Suppress new warnings in clang and clang-tidy 18 | David Robillard | 1 | -2/+3 | |
2024-07-15 | Add missing include | David Robillard | 1 | -0/+1 | |
2024-06-26 | Improve test coverage | David Robillard | 1 | -3/+1 | |
This situation probably should be reported, but 100% line coverage is very convenient since it makes coverage regression more obvious. I don't think a test being skipped on an esoteric system configuration is worth losing that. | |||||
2024-06-26 | Add zix_string_view_equals() | David Robillard | 2 | -1/+120 | |
2024-06-23 | Skip socket file type test with absurdly long TMPDIR | David Robillard | 1 | -8/+12 | |
If TMPDIR is so long that it doesn't fit in the socket address field, then it's impossible to create a socket in the temporary directory. This is a pretty weird situation that would never happen on a normal system, so I think the test can just be skipped without the reduced coverage being a problem. | |||||
2024-06-22 | Clean up whitespace and clang-format configuration | David Robillard | 2 | -10/+20 | |
2024-06-22 | Avoid cppcheck warning about self-assignment | David Robillard | 1 | -1/+0 | |
2024-06-22 | Remove redundant conditionals | David Robillard | 1 | -1/+0 | |
2024-06-22 | Add missing const qualifier | David Robillard | 1 | -1/+0 | |
2024-06-22 | Avoid cppcheck warning for assertions with side-effects in tests | David Robillard | 2 | -3/+7 | |
2024-06-22 | Fix mismatched printf argument type | David Robillard | 2 | -3/+2 | |
2024-06-22 | Add cppcheck test | David Robillard | 1 | -0/+28 | |
2024-06-22 | Fix whitespace and add code formatting test | David Robillard | 1 | -1/+12 | |
2024-06-04 | Fix calloc() argument order | David Robillard | 1 | -1/+1 | |
2024-03-14 | Fix ring unit test when mlock() is unavailable | David Robillard | 1 | -1/+1 | |
2023-12-02 | Fix warnings in strict MinGW build | David Robillard | 1 | -2/+4 | |
2023-11-17 | Test zix_copy_file() in Wasm | David Robillard | 1 | -9/+10 | |
2023-09-23 | Format meson.build files with muon | David Robillard | 1 | -2/+2 | |
The less time wasted with manual code formatting, the better. | |||||
2023-09-22 | Improve test suite code coverage | David Robillard | 10 | -524/+460 | |
2023-09-21 | Use anonymous namespace in C++ test | David Robillard | 1 | -8/+12 | |
2023-08-23 | Clean up C++ test configuration and documentation | David Robillard | 1 | -5/+1 | |
2023-08-23 | Improve test coverage | David Robillard | 2 | -5/+7 | |
2023-05-29 | Fix inappropriate use of PRIuPTR for size_t | David Robillard | 1 | -1/+1 | |
2023-05-12 | Fix emscripten warnings | David Robillard | 2 | -1/+4 | |
2023-05-01 | Split up main meson file | David Robillard | 1 | -0/+246 | |
2023-02-05 | Add missing include | David Robillard | 1 | -0/+1 | |
2023-02-04 | Suppress/fix clang-tidy warnings on Windows | David Robillard | 6 | -10/+24 | |
2023-02-04 | Use a more realistic scenario for file locking test | David Robillard | 1 | -1/+1 | |
2023-02-04 | Check zix_ring_mlock() return value | David Robillard | 1 | -1/+2 | |
2023-02-03 | Suppress/fix new warnings in clang-tidy 15 | David Robillard | 2 | -5/+4 | |
2022-11-25 | Clean up test conditions | David Robillard | 1 | -20/+17 | |
2022-11-25 | Constrain test parameters to reasonable limits | David Robillard | 4 | -8/+31 | |
2022-11-25 | Avoid truncating test random seed | David Robillard | 1 | -5/+6 | |
2022-11-25 | Avoid dereference after null check | David Robillard | 1 | -3/+4 | |
2022-11-25 | Consistently check write_to_path() return value in tests | David Robillard | 1 | -1/+1 | |
2022-11-25 | Fix potential use of close() on invalid file descriptors | David Robillard | 1 | -1/+15 | |
2022-11-25 | Remove dead code | David Robillard | 1 | -6/+0 | |
2022-11-17 | Remove ZixBitset | David Robillard | 3 | -73/+0 | |
2022-11-02 | Remove function_types.h | David Robillard | 2 | -2/+0 | |
2022-11-02 | Suppress warnings in C++ test | David Robillard | 1 | -0/+4 | |
This is necessary because the global warnings may be stricter when building as a subproject. | |||||
2022-11-01 | Remove invalid test case | David Robillard | 1 | -2/+0 | |
2022-10-23 | Add C++ header build test | David Robillard | 1 | -0/+29 | |
2022-10-23 | Add filesystem API | David Robillard | 4 | -2/+716 | |
2022-10-23 | Add path API | David Robillard | 4 | -0/+1458 | |
2022-10-23 | Add string view API | David Robillard | 1 | -0/+1 | |
2022-10-23 | Split reference documentation up into groups and add global header | David Robillard | 1 | -0/+1 | |
The "global" header just provides a convenient place to define the group structure of the library. Applications are better off using the individual headers, but this one will work fine if you don't care about build times or precise dependencies. | |||||
2022-10-21 | Split up common header | David Robillard | 6 | -6/+7 | |
2022-10-21 | Hide errno utility functions | David Robillard | 1 | -23/+0 | |
2022-10-18 | Use 0BSD for trivial "public domain intent" things | David Robillard | 2 | -2/+2 | |
2022-10-18 | Add stricter test for warnings in public headers | David Robillard | 2 | -0/+35 | |