A
A
Hello, @chenyulue I will try to simulate your environment today to see if I can reproduce the error. And also I have an update in the pipeline to make the...
Allow adding paths and set working directory before test case Proposed format ```c CESTER_EXECUTE_COMPILER_SET_WORKING_DIR("C:/User/test/"); CESTER_EXECUTE_COMPILER_ADD_PATH("C:/User/test/app1/bin"); CESTER_EXECUTE_COMPILER_ADD_PATH("C:/User/test/app2/bin"); CESTER_EXECUTE_COMPILER_ADD_PATH("C:/program/bin"); ```
in CESTER_TEST_COMPILE test case, allow running the command that output the text to compile, and also extra arg to test the compilation output E.g. ```c CESTER_TEST_COMPILE(does_this_python_code_runs, inst, "python", "", {...
You can use the macro `CESTER_STDERR_CONTENT` to print out the stderr content to see if anything is in it ```c printf("%s", CESTER_STDERR_CONTENT()) ``` Or verify the output stream the function...
Option to recompile the test source and execute from a temp folder
Move this to the client and GUI test manager
Great, I totally get the idea. I'll implement this + other possible generators in an upcoming release. On Wed, Mar 10, 2021 at 9:42 PM MarcelInTO wrote: > It would...
Debugged the issue down to `cester_concat_str`, the issue is trying to free the *out variable that was never malloced, I guess. in line 991
the previous comment was wrong, this bug is from hell.