"Han-Wen Nienhuys via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: > +if test -n "$GIT_TEST_REFTABLE" > +then > + test_set_prereq REFTABLE > +fi How would this interact with what the test prep series did which was to unconditionally add test_seq_prereq REFFILES around the same place? Should $GIT_TEST_REFTABLE disable REFFILES? IOW, do you want the above to read if test -n "$GIT_TEST_REFTABLE" then test_set_prereq REFTABLE else test_set_prereq REFFILES fi when both series are in effect? Thanks.