|
|
|
|
|
by fexl
4469 days ago
|
|
Right now, in my code, assert(0==1) produces this output to stderr: run: run.c:422: main: Assertion `0==1' failed.
Aborted
That is what I want.You are correct. If I build with -DNDEBUG=1, then the assert is completely ignored: no error message, and no abort. That is not what I want. Therefore I will not build with -DNDEBUG=1. I will certainly not introduce "logging to a file" as a concept inside buf.c. There is no need for the pure data manipulation code in buf.c to know anything about files or stdio, or a specific name of a log file. If the assert from assert.h does not do what I want, then I'll make a version that does. However, that is a moot point, since right now it does what I want. |
|