You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
first, thank you for this project is really nice!!!!
I have a couple of questions:
there's a "nice way" without changing the ctest.h header to redefine the vsnprintf function?
in my system I have to use a specific test_msg() function (for various reasons) to report text messages to the system so I cannot use any "printf" function. how can I extend ctest to use custom printf functions?
Also I have another function test_results() to report results to the main test framework.
there's a way to call a user function to report test results for the single test? how will you handle this?
how can I define different test suites and skip/execute those depending on a "configuration":
Hi,
first, thank you for this project is really nice!!!!
I have a couple of questions:
there's a "nice way" without changing the ctest.h header to redefine the vsnprintf function?
in my system I have to use a specific test_msg() function (for various reasons) to report text messages to the system so I cannot use any "printf" function. how can I extend ctest to use custom printf functions?
Also I have another function test_results() to report results to the main test framework.
there's a way to call a user function to report test results for the single test? how will you handle this?
how can I define different test suites and skip/execute those depending on a "configuration":
for example I can have
suite1
suite2
suite3
configuration1 -> execute 1, skip 2 and 3
configuration2 -> execute 1, skip 2 execute 3
configuration3 -> execute 1, 2 and 3
switch(test_configuration)
case NO_STRESS_TEST
result = ctest_main(configuration1)
case TEST_ALL
result = ctest_main(configuration3)
The text was updated successfully, but these errors were encountered: