fdefelici / clove-unit

Single-Header Unit Testing framework for C (interoperable with C++) with test autodiscovery feature
MIT License
46 stars 9 forks source link

Run Pretty: Make inclusion / exclusion options accept test index #86

Open fdefelici opened 10 months ago

fdefelici commented 10 months ago

Currently -i / -e options accepts expressions involving Suite name and Test name.

When running test using pretty report a test index is shown: image

So eventually could be usefull allow include/exclude options to accept also test indexes, like this:

This kind of change will have a huge impact on test filtering process, because filtering happen while retrieving test symbols while test index is assigned after when test run (depending on the number of test executed)

NOTE:

fdefelici commented 6 months ago

Better introducing this feature after #97 has been implemented