Patrick Steinhardt <ps@xxxxxx> writes: > The "perf-lib.sh" script is sourced by all of our benchmarking suites to > make available common infrastructure. The script assumes that build and > source directory are the same, which works for our Makefile. But the > assumption breaks with both CMake and Meson, where the build directory > can be located in an arbitrary place. > > Adapt the script so that it works with out-of-tree builds. This prepares > us for wiring up benchmarks in Meson. > > Signed-off-by: Patrick Steinhardt <ps@xxxxxx> > --- > t/perf/perf-lib.sh | 26 ++++++++++++++++++++++++-- > 1 file changed, 24 insertions(+), 2 deletions(-) > > diff --git a/t/perf/perf-lib.sh b/t/perf/perf-lib.sh > index 4173eee4def..5406557b7ca 100644 > --- a/t/perf/perf-lib.sh > +++ b/t/perf/perf-lib.sh > @@ -25,7 +25,29 @@ TEST_OUTPUT_DIRECTORY=$(pwd) > TEST_NO_CREATE_REPO=t > TEST_NO_MALLOC_CHECK=t > > -. ../test-lib.sh > +# While test-lib.sh computes the build directory for us, we also have to do the > +# same thing in order to locate the script via GIT-BUILD-OPTIONS in the first > +# place. > +GIT_BUILD_DIR="${GIT_BUILD_DIR:-$TEST_DIRECTORY/..}" > +if test -f "$GIT_BUILD_DIR/GIT-BUILD-DIR" > +then > + GIT_BUILD_DIR="$(cat "$GIT_BUILD_DIR/GIT-BUILD-DIR")" || exit 1 > + # On Windows, we must convert Windows paths lest they contain a colon > + case "$(uname -s)" in > + *MINGW*) > + GIT_BUILD_DIR="$(cygpath -au "$GIT_BUILD_DIR")" > + ;; > + esac > +fi > + > +if test ! -f "$GIT_BUILD_DIR"/GIT-BUILD-OPTIONS > +then > + echo >&2 'error: GIT-BUILD-OPTIONS missing (has Git been built?).' > + exit 1 > +fi > + > +. "$GIT_BUILD_DIR"/GIT-BUILD-OPTIONS > +. "$GIT_SOURCE_DIR"/t/test-lib.sh > > unset GIT_CONFIG_NOSYSTEM > GIT_CONFIG_SYSTEM="$TEST_DIRECTORY/perf/config" > @@ -324,7 +346,7 @@ test_at_end_hook_ () { > if test -z "$GIT_PERF_AGGREGATING_LATER"; then > ( > cd "$TEST_DIRECTORY"/perf && > - "$PERL_PATH" ./aggregate.perl --results-dir="$TEST_RESULTS_DIR" $(basename "$0") > + "$PERL_PATH" "$GIT_SOURCE_DIR"/t/perf/aggregate.perl --results-dir="$TEST_RESULTS_DIR" $(basename "$0") > ) > fi > } > > -- > 2.49.0.604.gff1f9ca942.dirty I'm not sure if it's related to this commit, but this patch series has broken something: $ make && cd t/perf && ./run . master p0005-status.sh === Running 1 tests in this tree === ok 1 - setup repo perf 2 - read-tree status br_ballast (4629): 1 ok # passed all 2 test(s) 1..2 === Unpacking 485f5f863615e670fd97ae40af744e14072cfe18 in build/485f5f863615e670fd97ae40af744e14072cfe18 === === Building 485f5f863615e670fd97ae40af744e14072cfe18 (master) === GIT_VERSION=2.49.GIT * new build flags CC daemon.o * new link flags CC common-main.o CC abspath.o CC add-interactive.o CC add-patch.o [snip] CC t/unit-tests/unit-test.o CC t/unit-tests/lib-oid.o LINK t/unit-tests/bin/unit-tests GEN gitweb/gitweb.cgi GEN gitweb/static/gitweb.js === Running 1 tests in /home/toon/devel/git/t/perf/build/485f5f863615e670fd97ae40af744e14072cfe18/bin-wrappers === ok 1 - setup repo perf 2 - read-tree status br_ballast (4629): 1 ok # passed all 2 test(s) 1..2 cannot open test-results/p0005-status.subtests: No such file or directory at ./aggregate.perl line 159. -- Toon