Thiago Adams

Results 89 comments of Thiago Adams

I need some help on this. I even don´t known it it is possible. For instance windows and linux at same time?

Is it easy to do a linux build? or run cake unit tests? cake unit tests could return the number of tests that failed.. then this is the target :D...

this is the code called on test.. ```c #include "unit_test.c" int main(int argc, char** argv) { enable_vt_mode(); test_main(); printf("%d tests failed, %d tests passed\n", g_unit_test_error_count, g_unit_test_success_count); } #endif ``` it...

I never used this. I don't know how it works! Does it blocks commits? Does it runs on each checkin? I will do some experiments like breaking a test.

I created a syntax error.. it green then a test failing it return fail on tests and still green. maybe it is not checking the results?

this is the code I try to catch the gcc compilation error ```c int system_like(const char* command) { int test_result = system(command); int stat = 0; wait(&stat); if (WIFEXITED(stat)) {...

Is it possible to make commits on this integration? For instance, change the version number at version.h then commit.

The idea for this feature is just remove the struct members from struct type. For instance ```c struct X { int i; }; void f(struct X { int i; }...