Re: [PATCH 2/6] t1406: prepare for the refs code to fail with BUG()
From: Junio C Hamano <hidden>
Date: 2018-05-02 10:41:28
Johannes Schindelin [off-list ref] writes:
quoted
As discussed in this thread, tests that use t/helper/ executables that try to trickle BUG() codepath to ensure that these "should never happen" conditions are caught do need to deal with it. If dumping core is undesirable, tweaking BUG() implementation so that it becomes die("BUG: ...") *ONLY* when the caller knows what it is doing (e.g. running t/helper/ commands) is probably a good idea. Perhaps GIT_TEST_OPTS can gain one feature "--bug-no-abort" and set an environment variable so that implementation of BUG() can notice, or something.I think we can do even better than that. t/helper/*.c could set a global variable that no other code is supposed to set, to trigger an alternative to SIGABRT. Something like
Yes, I agree with that solution for t/helper/ part. But we also need to arrange a way for things outside t/helper/ to set the BUG_exit_code at runtime, so that those like Duy who causes BUG() to trigger in some "git cmd" under development when running tests for himself, where he does not want his BUG() to dump core and contaminate global core storage.