Merge branch 'ps/perf-with-separate-output-directory'
Test update. * ps/perf-with-separate-output-directory: perf: fix when running with TEST_OUTPUT_DIRECTORYmaint
commit
e163f73b7b
|
@ -58,6 +58,7 @@ sub usage {
|
|||
Options:
|
||||
--codespeed * Format output for Codespeed
|
||||
--reponame <str> * Send given reponame to codespeed
|
||||
--results-dir <str> * Directory where test results are located
|
||||
--sort-by <str> * Sort output (only "regression" criteria is supported)
|
||||
--subsection <str> * Use results from given subsection
|
||||
|
||||
|
@ -91,11 +92,13 @@ sub sane_backticks {
|
|||
|
||||
my (@dirs, %dirnames, %dirabbrevs, %prefixes, @tests,
|
||||
$codespeed, $sortby, $subsection, $reponame);
|
||||
my $resultsdir = "test-results";
|
||||
|
||||
Getopt::Long::Configure qw/ require_order /;
|
||||
|
||||
my $rc = GetOptions("codespeed" => \$codespeed,
|
||||
"reponame=s" => \$reponame,
|
||||
"results-dir=s" => \$resultsdir,
|
||||
"sort-by=s" => \$sortby,
|
||||
"subsection=s" => \$subsection);
|
||||
usage() unless $rc;
|
||||
|
@ -137,8 +140,6 @@ if (not @tests) {
|
|||
@tests = glob "p????-*.sh";
|
||||
}
|
||||
|
||||
my $resultsdir = "test-results";
|
||||
|
||||
if (! $subsection and
|
||||
exists $ENV{GIT_PERF_SUBSECTION} and
|
||||
$ENV{GIT_PERF_SUBSECTION} ne "") {
|
||||
|
|
|
@ -45,7 +45,7 @@ export TEST_DIRECTORY TRASH_DIRECTORY GIT_BUILD_DIR GIT_TEST_CMP
|
|||
MODERN_GIT=$GIT_BUILD_DIR/bin-wrappers/git
|
||||
export MODERN_GIT
|
||||
|
||||
perf_results_dir=$TEST_OUTPUT_DIRECTORY/test-results
|
||||
perf_results_dir=$TEST_RESULTS_DIR
|
||||
test -n "$GIT_PERF_SUBSECTION" && perf_results_dir="$perf_results_dir/$GIT_PERF_SUBSECTION"
|
||||
mkdir -p "$perf_results_dir"
|
||||
rm -f "$perf_results_dir"/$(basename "$0" .sh).subtests
|
||||
|
@ -253,7 +253,10 @@ test_size () {
|
|||
# and does it after running everything)
|
||||
test_at_end_hook_ () {
|
||||
if test -z "$GIT_PERF_AGGREGATING_LATER"; then
|
||||
( cd "$TEST_DIRECTORY"/perf && ./aggregate.perl $(basename "$0") )
|
||||
(
|
||||
cd "$TEST_DIRECTORY"/perf &&
|
||||
./aggregate.perl --results-dir="$TEST_RESULTS_DIR" $(basename "$0")
|
||||
)
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
25
t/perf/run
25
t/perf/run
|
@ -188,10 +188,10 @@ run_subsection () {
|
|||
|
||||
if test -z "$GIT_PERF_SEND_TO_CODESPEED"
|
||||
then
|
||||
./aggregate.perl $codespeed_opt "$@"
|
||||
./aggregate.perl --results-dir="$TEST_RESULTS_DIR" $codespeed_opt "$@"
|
||||
else
|
||||
json_res_file="test-results/$GIT_PERF_SUBSECTION/aggregate.json"
|
||||
./aggregate.perl --codespeed "$@" | tee "$json_res_file"
|
||||
json_res_file=""$TEST_RESULTS_DIR"/$GIT_PERF_SUBSECTION/aggregate.json"
|
||||
./aggregate.perl --results-dir="$TEST_RESULTS_DIR" --codespeed "$@" | tee "$json_res_file"
|
||||
send_data_url="$GIT_PERF_SEND_TO_CODESPEED/result/add/json/"
|
||||
curl -v --request POST --data-urlencode "json=$(cat "$json_res_file")" "$send_data_url"
|
||||
fi
|
||||
|
@ -203,10 +203,17 @@ get_var_from_env_or_config "GIT_PERF_SEND_TO_CODESPEED" "perf" "sendToCodespeed"
|
|||
cd "$(dirname $0)"
|
||||
. ../../GIT-BUILD-OPTIONS
|
||||
|
||||
mkdir -p test-results
|
||||
get_subsections "perf" >test-results/run_subsections.names
|
||||
if test -n "$TEST_OUTPUT_DIRECTORY"
|
||||
then
|
||||
TEST_RESULTS_DIR="$TEST_OUTPUT_DIRECTORY/test-results"
|
||||
else
|
||||
TEST_RESULTS_DIR=test-results
|
||||
fi
|
||||
|
||||
if test $(wc -l <test-results/run_subsections.names) -eq 0
|
||||
mkdir -p "$TEST_RESULTS_DIR"
|
||||
get_subsections "perf" >"$TEST_RESULTS_DIR"/run_subsections.names
|
||||
|
||||
if test $(wc -l <"$TEST_RESULTS_DIR"/run_subsections.names) -eq 0
|
||||
then
|
||||
if test -n "$GIT_PERF_SUBSECTION"
|
||||
then
|
||||
|
@ -222,10 +229,10 @@ then
|
|||
)
|
||||
elif test -n "$GIT_PERF_SUBSECTION"
|
||||
then
|
||||
egrep "^$GIT_PERF_SUBSECTION\$" test-results/run_subsections.names >/dev/null ||
|
||||
egrep "^$GIT_PERF_SUBSECTION\$" "$TEST_RESULTS_DIR"/run_subsections.names >/dev/null ||
|
||||
die "subsection '$GIT_PERF_SUBSECTION' not found in '$GIT_PERF_CONFIG_FILE'"
|
||||
|
||||
egrep "^$GIT_PERF_SUBSECTION\$" test-results/run_subsections.names | while read -r subsec
|
||||
egrep "^$GIT_PERF_SUBSECTION\$" "$TEST_RESULTS_DIR"/run_subsections.names | while read -r subsec
|
||||
do
|
||||
(
|
||||
GIT_PERF_SUBSECTION="$subsec"
|
||||
|
@ -243,5 +250,5 @@ else
|
|||
echo "======== Run for subsection '$GIT_PERF_SUBSECTION' ========"
|
||||
run_subsection "$@"
|
||||
)
|
||||
done <test-results/run_subsections.names
|
||||
done <"$TEST_RESULTS_DIR"/run_subsections.names
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue