Mark VanderVoord

Results 148 comments of Mark VanderVoord

No problem! Ceedling can definitely be called by Jenkins as a command line tool and it has a variety of output reports to output in a format that Jenkins likes....

Ah. I'm not really a jenkins expert. I believe that it CAN pull from git, but I'm sure there'd be an extra configuration step to tell it what your credentials...

The problem is the two sizeof operators. You have the length of each array... but what you want is the number of elements and the length of each ELEMENT of...

You can either change to this: ``` TEST_ASSERT_EQUAL_MEMORY_ARRAY(&u8VirtualScreen[0], &u8ReferenceScreen[0], sizeof(u8VirtualScreen[0]), sizeof(u8VirtualScreen)/sizeof(u8VirtualScreen[0])); ``` Notice that the first sizeof is taking the size of ONE ELEMENT. The second is the number of...

Hi @claudiiolima -- I'm not sure if you're asking if you can set flags for the test executable, or if you want to set flags differently for different parts of...

You make a good point about optimization changes, etc. Thanks for the thought! I don't think it'll probably make it into the 0.32 release, but our goal is to make...

Was your solution to add protection to the generated header, like so: #ifndef MYADC_H_ #define MYADC_H_ // all other generated code #endif

Honestly, I thought we had this feature already... but it appears we do not. Perhaps this was because we were afraid of getting name conflicts... but that seems solveable... we...

Try `pip install gcovr` to ask python to install the coverage libraries for you. Also, when pasting code snippets into comments, if you put three backticks on a line alone...

If you run `gcovr --version` from the command prompt, does it return a version? It might be the same issue that others have run into... that the environment isn't handling...