ctest icon indicating copy to clipboard operation
ctest copied to clipboard

A simple portable C test runner

Results 6 ctest issues
Sort by recently updated
recently updated
newest added

`##[warning]No test sources found matching the given filter '**\*test*.dll,!**\obj\**'`

Due to the rather recent addition of the macro utils dependency, a git submodule update --init is needed to be added to the build instructions.

Would be awesome if the RUN_TEST_SUITE macro would: 1) either be a rvalue (and return failedTestCount) 2) either take a size_t*, because it is immediately un-obvious that failedTestCount is actually...

Example: ``` typedef unsigned char my_type[32]; // … test code ASSERT_ARE_EQUAL(my_type, a, b); ``` Fails to compile in `CTEST_ASSERT_ARE_EQUAL` because the code tries to cast/assign an array type: ``` #define...

at the moment, there's a (1x) global TEST_SUITE_INITIALIZE and a (1x) global TEST_FUNCTION_INITIALIZE. This does not leave much flexibility in setting up the initial conditions for a test. A test...

enhancement