Results 5 comments of Ali Rostami

Hello everyone @graial Could you solve the issue? In my case, I'm using [cpputest-starter-project](https://github.com/jwgrenning/cpputest-starter-project) and if I add this line: `#include ` to before or after `#include "CppUTest/TestHarness.h"` in [MyFirstTest.cpp](https://github.com/jwgrenning/cpputest-starter-project/blob/master/tests/MyFirstTest.cpp)...

Hi @graial thanks for your answer. I took a look at it, but it didn't help me. I found an easier solution to reproduce the problem. Open [cyber-dojo](https://cyber-dojo.org/creator/home) and click...

Unfortunately it didn't help. I also tried to turn off memory leak detection by using this: ``` int main(int argc, char** argv) { MemoryLeakWarningPlugin::turnOffNewDeleteOverloads(); return CommandLineTestRunner::RunAllTests(argc, argv); } ``` But...

Thanks to both of you🙏🙂 I finally could disable the MEM_LEAK_DETECTION by adding this line: `ENV CPPUTEST_USE_MEM_LEAK_DETECTION=N` to docker file of [cpputest_starter_project](https://github.com/ali-rostami/cpputest-starter-project/blob/master/docker/Dockerfile). Now it compiles successfully but I don't want...

Hi @lawm , thank you so much for your response. 🙂🙏 when I add --build-dir like this: ```c python runner.py --elf_file ../myProject/prj/stm32-build/build/myProject-debug.elf --build_dir ../myProject/prj/stm32-build/build/ ``` it gives me so many...