Dom Postorivo

Results 10 comments of Dom Postorivo

Ruby 1.8.7 and Ruby 1.9.2 were EOL as of July 31, 2014. It should be noted that Ruby 2.0 is also in EOL and Ruby 2.1.X will only receive security...

Do you have gcovr installed? Double check the readme here for install instructions if you need them: https://github.com/ThrowTheSwitch/Ceedling/tree/master/plugins/gcov

@mvandervoord I have a few questions on the implementation. In my mind, you would choose to do a memory test separate from actually running a test. Since all that needs...

I have a project that uses libjanson and ceedling and gcov work just fine. This is what needs to be done for gcov to work with it: ``` :tools_gcov_linker: :arguments:...

Let me know if you still have issues.

Can you provide a minimal example repo to reproduce this issue? I know with the filters off, the gcov utility will show any file touched by the tests even unity.

Ceedling could do this, but the current ceedling gcov implementation is tied closely to how gcov works which will only give you data on what you compile. A simple work...

I've hit this before on linux when having globs in paths with a lot of directories. My gut is that we can give a smarter error for this, but it...

I'd be interested in seeing this, however I'm not sure how much can be done asynchronously as is. A lot of ceedling is shell commands and checking the return of...

The test runners have their own config. Add this to your project.yml: ``` :test_runner: :includes: - error.h ``` By the way, I've personally been fighting parameterized testing in my repo...