On Mon, Aug 6, 2018 at 11:01 AM, Steffen Görtz <cont...@steffen-goertz.de> wrote: > + /* Check Input propagates */ > + g_assert_false(true);
Each patch must compile and run successfully. This test case will fail here. Please don't do this - even if a later patch will fill in the missing part. The reason for this requirement is that git-bisect(1) must work on any commit. If the some commits don't compile or pass tests then it makes git-bisect(1) much harder or impossible to use. Stefan