msimpson80
msimpson80
I would like to run my tests in valgrind. From the command line, we would invoke this like: valgind build/test/out/test_voodoo/test_voodoo.out Basically, calling the valgrind binary and passing the test executable...
Currently, when a mock has been called fewer times than expected we get an error such as: test_foo.c:75 test_that_fails:FAIL:Function some_mock. Called fewer times than expected Where test_foo.75 is the test_that_fails()....
In the "old" ceedlng, we could have options files include other options files As I understand it, this ability to inlcude extra config has been replaced with mixins, and project.yml...
With the default project.yml (as of 1.0.1) and this mixin: ``` :unity: :defines: - UNITY_EXCLUDE_FLOAT - UNITY_INCLUDE_EXEC_TIME :flags: :test: :compile: :*: - -std=c99 ``` Complation fails with: ``` ceedling --mixin=c99bug.yml...