bpo-43031: Set a timeout when running tests in PGO build (GH-24339)

Pass --timeout=$(TESTTIMEOUT) option to the default profile task
"./python -m test --pgo" command.
This commit is contained in:
Victor Stinner 2021-01-27 11:16:15 +01:00 committed by GitHub
parent 5327f37034
commit 6790005a9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View File

@ -0,0 +1,2 @@
Pass ``--timeout=$(TESTTIMEOUT)`` option to the default profile task
``./python -m test --pgo`` command.

2
configure vendored
View File

@ -6532,7 +6532,7 @@ fi
$as_echo_n "checking PROFILE_TASK... " >&6; } $as_echo_n "checking PROFILE_TASK... " >&6; }
if test -z "$PROFILE_TASK" if test -z "$PROFILE_TASK"
then then
PROFILE_TASK='-m test --pgo' PROFILE_TASK='-m test --pgo --timeout=$(TESTTIMEOUT)'
fi fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $PROFILE_TASK" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PROFILE_TASK" >&5
$as_echo "$PROFILE_TASK" >&6; } $as_echo "$PROFILE_TASK" >&6; }

View File

@ -1325,7 +1325,7 @@ AC_ARG_VAR(PROFILE_TASK, Python args for PGO generation task)
AC_MSG_CHECKING(PROFILE_TASK) AC_MSG_CHECKING(PROFILE_TASK)
if test -z "$PROFILE_TASK" if test -z "$PROFILE_TASK"
then then
PROFILE_TASK='-m test --pgo' PROFILE_TASK='-m test --pgo --timeout=$(TESTTIMEOUT)'
fi fi
AC_MSG_RESULT($PROFILE_TASK) AC_MSG_RESULT($PROFILE_TASK)