As brought up by Johannes Schindelin, some people run tests within the t/ directory and often without make. We need to check and inform those users to build test-chmtime before running those tests. Signed-off-by: Eric Wong <normalperson@xxxxxxxx> --- t/test-lib.sh | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/t/test-lib.sh b/t/test-lib.sh index a403fe0..c075474 100755 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -264,6 +264,12 @@ test -d ../templates/blt || { error "You haven't built things yet, have you?" } +if ! test -x ../test-chmtime; then + echo >&2 'You need to build test-chmtime:' + echo >&2 'Run "make test-chmtime" in the source (toplevel) directory' + exit 1 +fi + # Test repository test=trash rm -fr "$test" -- 1.5.0.137.ge6502 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html