CPP unit setup for C++ -
in cpp unit run unit test part of build part of post build setup. running multiple tests part of this. in case if test case fails post build should not stop, should go ahead , run test cases , should report summary how many test cases passed , failed. how can achieve this.
thanks!
your question vague precise answer. usually, unit test engine return code tell has failed (like non 0 return code in shell on linux) or generate output file results. calling system handle this. if have written (some home made scripts) have give option go on tests execution if error occurred. if using tools continuous integration server, have go through doc , find option allows go on when tests fails.
a workaround write script return "ok" result if unit test fails, there lose automatic verification ...
be more specific if want more clues.
my2c
Comments
Post a Comment