summaryrefslogtreecommitdiffstats
path: root/tests
AgeCommit message (Collapse)AuthorFilesLines
2022-09-27Use std::make_uniqueDavid Robillard2-3/+2
2022-09-27Simplify clang-tidy configurationDavid Robillard1-0/+16
2022-09-08Use 0BSD for trivial "public domain intent" thingsDavid Robillard1-1/+1
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-08-18Fix whitespaceDavid Robillard1-1/+3
2022-08-18Fix overly long line commentsDavid Robillard1-2/+2
2022-08-18Avoid "else" after "return", "break", and "continue"David Robillard1-1/+3
2022-08-18Make empty methods and trivial constructors noexceptDavid Robillard1-1/+1
2022-08-18Use auto when declaring iteratorsDavid Robillard1-1/+2
2022-08-18Switch to meson build systemDavid Robillard1-0/+112
2022-08-17Use eg-metro in tests instead of eg-samplerDavid Robillard1-3/+3
This plugin doesn't have external dependencies (like libsndfile), so is more likely to be present.
2021-01-02Update for latest raulDavid Robillard1-3/+3
2020-12-15Clean up includes in core and serverDavid Robillard4-3/+13
2020-12-14Fix redundant calls to smart pointer get() methodsDavid Robillard1-1/+1
2020-12-14Avoid "using namespace"David Robillard2-31/+70
2020-08-03Clean up includesDavid Robillard3-3/+2
As directed by include-what-you-use. Unfortunately, it is still confused by quite a few things, but this gets a lot closer to a clean report, and at least makes the output more tolerable to manually check.
2020-08-02Remove std::shared_ptr aliasDavid Robillard2-2/+1
2020-08-02Remove std::unique_ptr aliasDavid Robillard1-1/+2
2020-08-02Rename memory utility headerDavid Robillard2-2/+2
2020-08-02Clean up URI map interfaceDavid Robillard1-1/+1
2020-08-02Fix header-hygiene warningDavid Robillard1-2/+4
2020-08-02Add missing override specifiersDavid Robillard1-1/+2
2020-08-02Use auto with casts and allocations to remove redundancyDavid Robillard1-1/+1
2020-08-02Fix suppressed automatic movesDavid Robillard1-1/+1
2020-08-01Use modern castsDavid Robillard2-9/+14
2020-08-01Make set_bundle_path_from_code take a function pointerDavid Robillard2-2/+2
2020-08-01Remove superfluous semicolonsDavid Robillard2-23/+29
2020-07-18Add missing static specifiersDavid Robillard2-2/+2
2019-11-10Make test suite depend only on LV2David Robillard10-34/+25
2019-03-16Improve input path handlingDavid Robillard1-12/+20
2019-03-09Clean up AtomForgeDavid Robillard1-15/+7
2019-03-09Clean up includes and forward declarationsDavid Robillard5-30/+33
2019-03-09Localise dependency on boost::format and improve logging APIDavid Robillard3-15/+15
2019-03-08Use smart pointers to manage World in programsDavid Robillard2-8/+6
2019-03-08Use smart pointers to handle FILE streamsDavid Robillard1-5/+5
2019-03-08Make parser take mandatory arguments by referenceDavid Robillard2-2/+2
2018-09-30Update empty test bundleDavid Robillard2-5/+3
2018-09-29Use nullptrDavid Robillard1-1/+1
2018-09-23Use lowercase namespace namesDavid Robillard4-7/+7
2018-01-22Only enqueue messages when the engine is remoteDavid Robillard1-1/+0
When the engine is local, messages are emitted in the Gtk thread and applied immediately. This should make the GUI more responsive.
2018-01-21Avoid unnecessary move warningsDavid Robillard1-1/+1
2018-01-21Add FilePath class and remove use of glib path utilitiesDavid Robillard3-14/+152
2018-01-21Use C++ style includes for standard language headersDavid Robillard1-1/+1
2018-01-21Add URI class and remove use of Raul::URIDavid Robillard2-4/+4
2018-01-21Don't build libraries twice when testing is enabledDavid Robillard2-2/+2
2017-12-25Use auto for iteratorsDavid Robillard1-1/+1
2017-12-25Use nullptrDavid Robillard2-7/+7
2017-12-24Clean up includes in public headersDavid Robillard2-1/+3
2017-12-18Fix override specifiersDavid Robillard1-1/+1
2017-12-16Move sequence numbers into messages and simplify interfacesDavid Robillard1-2/+0
2017-12-16Add Message struct and remove tons of interface boilerplateDavid Robillard1-52/+15