ThrowTheSwitch / Ceedling

Ruby-based unit testing and build system for C projects

Home Page:http://throwtheswitch.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ceedling 0.32.0 doesn't support verbosity task

Daedaliss9 opened this issue · comments

I am attempting to use Ceedling in a very basic fashion to learn how it is implemented to then use it during C development work. I am running into difficulities with debugging and have found an issue with the verbosity task.

I am attempting to link to a simple file in my project, run a test that will instantiate a circular buffer to test with. When I link to the buffer files, instantiate a buffer, and compile with Ceedling, I get the following error:

image

I attempt to turn on verbosity to troubleshoot, and get the next error:

image

Finally, check with Rake about tasks, and see this:

image

Ceedling version information:

image

I am using Ruby 0.33.0 currently.

Any clues on how to get verbosity to work? Also, any help with troubleshooting the linking issue with the original test would be nice too. I would post in the Forums section, but doesn't seem anyone is watching that location and the board is filled with bot postings so it didn't seem like a place I would get an answer. If this is the wrong place to pose these questions, all eyes on where I should post. Thank you!

Use the --debug option. e.g.: ceedling --debug test:all.
Your are using the development version of Ceedling, so make sure to be using the latest pre-release from releases page and take a look ate the new docs.

Use the --debug option. e.g.: ceedling --debug test:all. Your are using the development version of Ceedling, so make sure to be using the latest pre-release from releases page and take a look ate the new docs.

Thank you, this is what I was looking for!

I am using 0.32.0 due to issues between Ceedling 0.31.1 & new updates to ruby. Installed 0.32.0 as suggested as per this link - https://groups.google.com/g/throwtheswitch/c/r_dDuJzyRXc

NOTE: There are no references to this --debug flag in either the command line help menu or the CeedlingPacket.md at this time.