On 11/11/2020 2:43 PM, Taylor Blau wrote: > From: Derrick Stolee <dstolee@xxxxxxxxxxxxx> > > The current rev-list tests that check the bitmap data only work on HEAD > instead of multiple branches. Expand the test cases to handle both > 'master' and 'other' branches. Adding Johannes to CC since this likely will start colliding with his default branch rename efforts. > +rev_list_tests () { > + state=$1 > + > + for branch in "master" "other" > + do > + rev_list_tests_head > + done > +} Specifically, this is a _new_ instance of "master", but all the other instances of "master" are likely being converted to "main" in parallel. It would certainly be easier to convert this test _after_ these changes are applied, but that's unlikely to happen with the current schedule of things. Thanks, -Stolee