Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-05-01 | Replace strict option with new meson warning level | David Robillard | 2 | -1/+2 | |
2023-02-04 | Fix clang and clang-tidy warnings on Windows | David Robillard | 1 | -1/+1 | |
2023-02-03 | Suppress/fix new warnings in clang-tidy 15 | David Robillard | 2 | -1/+2 | |
2023-01-29 | Suppress new warnings in MSVS 2022 | David Robillard | 1 | -0/+5 | |
2022-12-11 | Suppress warnings in C++ test | David Robillard | 1 | -1/+18 | |
2022-12-10 | Make clang-tidy configuration cleaner when run via meson | David Robillard | 1 | -1/+1 | |
Unfortunately, meson drives clang-tidy in a way that can't handle C and C++ in the same project. | |||||
2022-12-10 | Simplify trivial switch statements | David Robillard | 2 | -12/+2 | |
2022-12-10 | Resurrect C++ bindings test | David Robillard | 4 | -1/+41 | |
2022-12-10 | Use consistent meson formatting | David Robillard | 13 | -181/+271 | |
2022-12-10 | Avoid "else" after "return" | David Robillard | 2 | -8/+11 | |
2022-12-10 | Avoid "suspicious" string comparisons | David Robillard | 2 | -3/+2 | |
2022-12-10 | Strengthen clang-tidy configuration | David Robillard | 1 | -32/+1 | |
2022-11-16 | Remove filesystem module | David Robillard | 6 | -39/+18 | |
2022-11-16 | Use zix_path_parent_path() | David Robillard | 1 | -28/+0 | |
2022-11-16 | Use zix_path_filename() | David Robillard | 1 | -23/+0 | |
2022-11-16 | Use zix_path_lexically_relative() | David Robillard | 1 | -24/+0 | |
2022-11-16 | Use zix_dir_for_each() | David Robillard | 2 | -70/+11 | |
2022-11-16 | Use zix_current_path() | David Robillard | 1 | -34/+0 | |
2022-11-16 | Use zix_path_is_absolute() | David Robillard | 1 | -20/+0 | |
2022-11-16 | Use zix_file_lock() | David Robillard | 1 | -22/+0 | |
2022-11-16 | Use zix_copy_file() | David Robillard | 2 | -42/+0 | |
2022-11-16 | Use zix_create_temporary_directory() | David Robillard | 2 | -20/+2 | |
2022-11-16 | Use zix_create_directories() | David Robillard | 2 | -36/+1 | |
2022-11-16 | Use zix_temp_directory_path() | David Robillard | 1 | -11/+0 | |
2022-11-16 | Use zix_remove() | David Robillard | 4 | -33/+34 | |
2022-11-16 | Use zix_file_equals() | David Robillard | 3 | -41/+3 | |
2022-11-16 | Use zix_canonical_path() | David Robillard | 4 | -78/+7 | |
2022-11-16 | Use zix_path_join() | David Robillard | 4 | -144/+83 | |
2022-11-16 | Use zix_file_type() and zix_symlink_type() | David Robillard | 2 | -34/+21 | |
2022-11-16 | Simplify test setup code | David Robillard | 10 | -104/+10 | |
2022-11-16 | Fix mismatched free functions | David Robillard | 1 | -2/+2 | |
2022-09-08 | Use 0BSD for trivial "public domain intent" things | David Robillard | 15 | -15/+15 | |
Fedora takes issue with CC0. Although it doesn't really matter for this stuff (dual licensed anyway, questionably "software", certainly not patentable, and so on), this is simpler and more consistent with the ISC license used for the actual software anyway. | |||||
2022-09-08 | Only run REUSE test in strict mode | David Robillard | 1 | -12/+14 | |
2022-09-01 | Adopt REUSE machine-readable licensing standard | David Robillard | 63 | -598/+163 | |
2022-08-22 | Only run autoship test in strict mode | David Robillard | 1 | -3/+5 | |
2022-07-18 | Switch to meson build system | David Robillard | 22 | -14/+371 | |
2022-07-17 | Suppress new warnings in clang-tidy 14 | David Robillard | 1 | -0/+2 | |
2022-07-17 | Fix unlikely null dereference in test | David Robillard | 1 | -8/+16 | |
2022-07-17 | Avoid incorrect use of mkstemp in tests | David Robillard | 2 | -37/+72 | |
This was an overly hasty switch from race-prone alternatives to mkstemp, but it did not actually account for the fact that mkstemp creates the file. This resulted in leaking the file handle, and trying to open it twice, which made the tests fail on Windows/MinGW. | |||||
2022-05-26 | Suppress new warnings in clang-tidy 13 | David Robillard | 1 | -0/+5 | |
2021-01-11 | Use unique test bundle names so tests can run in parallel | David Robillard | 19 | -38/+110 | |
2021-01-11 | Fix unused parameter warnings | David Robillard | 12 | -3/+100 | |
2021-01-02 | Use email address instead of website for attribution | David Robillard | 27 | -27/+27 | |
2021-01-02 | Suppress clang-tidy C11 warnings | David Robillard | 1 | -0/+1 | |
2020-12-31 | Format all code with clang-format | David Robillard | 47 | -3380/+3301 | |
2020-12-18 | Windows: Prefer backslash as a path separator | David Robillard | 1 | -3/+31 | |
This situation is, as always, a total nightmare. In an attempt to not make weird paths with mixed separators, a heuristic is used here which uses forward slash if it seems that the input paths do. Otherwise, backslash (the "preferred" separator on Windows despite all good sense) is used. | |||||
2020-12-18 | Windows: Add test cases for lilv_path_is_absolute() | David Robillard | 1 | -0/+7 | |
2020-12-18 | Add lilv_path_absolute_child() | David Robillard | 1 | -0/+21 | |
2020-12-18 | Add lilv_path_filename() | David Robillard | 1 | -0/+23 | |
2020-12-18 | Ensure that bundles are removed in state tests | David Robillard | 1 | -2/+2 | |