<div dir="ltr"><div><div><div><div>Hey,<br><br></div>so I just pushed a patch that allows you to execute just a single test case from a whole suite.<br><br></div>It is mainly meant for the few cases where executing the whole suite takes a long time (e.g. export tests with export validation enabled). Please use it carefully and only during development. Check with a make check or similar before pushing.<br><br></div>You can use that new feature through the environment variable CPPUNIT_TEST_NAME which should contain the fully qualified name of the test case that you want to run.<br><br></div>Examples mentioned in the commit are:<br><br><pre class="">CPPUNIT_TEST_NAME="ScFiltersTest::testOutlineODS ScFiltersTest::testRangeNameXLS" make CppunitTest_sc_subsequent_filters_test<br><br></pre><pre class="">that one executes exactly 2 of the 75 tests in subsequent_filters_test.<br><br>CPPUNIT_TEST_NAME="ScFiltersTest" make CppunitTest_sc_subsequent_filters_test<br><br></pre><pre class="">would execute all ScFiltersTest cases which can be useful for the few locations where we have several suites in a single library.<br><br></pre><pre class="">Feel free to comment and improve the implementation.<br><br></pre><pre class="">Regards,<br>Markus<br></pre></div>