aboutsummaryrefslogtreecommitdiffstats
path: root/test
AgeCommit message (Collapse)AuthorFilesLines
2022-12-11Clean up include guardsDavid Robillard1-1/+0
2022-12-11Simplify clang-tidy configurationDavid Robillard1-4/+4
2022-12-11Test headers for warnings more strictlyDavid Robillard7-13/+150
2022-12-10Consistently use lists for dependenciesDavid Robillard1-3/+3
2022-11-19Avoid test directory entirely if tests are disabledDavid Robillard1-13/+11
2022-09-09Fix allegedly "suspicious" string comparisonsDavid Robillard2-6/+5
I guess it's suspicious if you've got about 5 minutes of C experience?
2022-09-09Use uppercase integer literal suffixesDavid Robillard1-1/+5
2022-09-08Use 0BSD for trivial "public domain intent" thingsDavid Robillard2-2/+2
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-08Adopt REUSE machine-readable licensing standardDavid Robillard6-75/+13
2022-08-12Avoid running syntax check on WindowsDavid Robillard1-1/+2
2022-08-09Avoid running syntax check in cross buildsDavid Robillard1-1/+1
This doesn't work because lv2_check_syntax.py uses serdi, and so would need to call it with a wrapper. That's possible (and is how the test scripts work), but this check doesn't need to run everywhere, so just disable it in cross builds to avoid the issue.
2022-08-07Only run flake8/pylint/black tests with strict option enabledDavid Robillard1-21/+23
Older versions of these tools can cause issues, but they are only useful for development anyway. So, just disable them by default to avoid build issues for users on ancient systems.
2022-07-17Suppress new warnings in clang and clang-tidy 14David Robillard1-0/+5
2022-07-17Rearrange source tree to be directly usable by dependantsDavid Robillard4-1/+702
This allows the LV2 source distribution to be used as an include path for compilers and an LV2_PATH for applications, at the expense of self-contained bundles. That's a nice idea, but it made LV2 itself weird and annoying to depend on. This rearranges things so that directories in the source tree correspond more closely to installation directories. To make this possible, the "aux" directory in the documentation output has been changed to "style", to avoid the reserved name "aux" on Windows.
2022-07-17Switch to meson build systemDavid Robillard4-0/+244