The test framework does not compile on Tiny C Compiler:
testing.c:219: lvalue expected
make: *** [testing.o] Error 1
Explanation:
Tiny C Compiler defines `WEXITSTATUS(status)` so it takes the *address* of the
passed parameter. The function `run_test(testing.c:219)` does not pass
`WEXITSTATUS` a proper lvalue, but the result of a function.
Thanks dreamlax for reporting :)
Original issue reported on code.google.com by guillermocalvo on 17 Jan 2011 at 3:25
Original issue reported on code.google.com by
guillermocalvo
on 17 Jan 2011 at 3:25