You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After comments in #5079, I was just curious if flux-core could be built without asserts and if the tests would pass.
There are a number of "unused-but-set-variable" and "unused-variable" errors and some stupid corner cases (e.g. I had a function in libsubprocess that ended in an assert, so got a warning that function didn't return a value). But nothing super horrible (i.e. assert (rv = something); return rv; would be really really bad). Tests pass.
I just thought I'd log my diff here just for note taking purposes and in case anyone in the future wanders into this/needs it. I think we're a long ways off from wanting to build flux without asserts in the general case.
After comments in #5079, I was just curious if flux-core could be built without asserts and if the tests would pass.
There are a number of "unused-but-set-variable" and "unused-variable" errors and some stupid corner cases (e.g. I had a function in
libsubprocess
that ended in an assert, so got a warning that function didn't return a value). But nothing super horrible (i.e.assert (rv = something); return rv;
would be really really bad). Tests pass.I just thought I'd log my diff here just for note taking purposes and in case anyone in the future wanders into this/needs it. I think we're a long ways off from wanting to build flux without asserts in the general case.
The text was updated successfully, but these errors were encountered: