As pointed out by Junio, aggregate.perl is not careful enough about its loading of Git.pm, using the one that is installed on the system. Load the version from the build tree, using FindBin as proposed by Jakub. Signed-off-by: Thomas Rast <trast@xxxxxxxxxxxxxxx> --- t/perf/aggregate.perl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/t/perf/aggregate.perl b/t/perf/aggregate.perl index 15f7fc1..c0afa0b 100755 --- a/t/perf/aggregate.perl +++ b/t/perf/aggregate.perl @@ -2,6 +2,9 @@ use strict; use warnings; +use FindBin; +use lib "$FindBin::Bin/../../perl/blib/lib", + "$FindBin::Bin/../../perl/blib/arch/auto/Git"; use Git; sub get_times { -- 1.7.10.rc0.230.g16d90 -- 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