diff options
author | Sam James <sam@gentoo.org> | 2021-10-29 05:26:44 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-10-29 05:27:03 +0100 |
commit | 4eb8d34c46e26c19017f03a4ef0a3734260ceb5f (patch) | |
tree | c4343131917364dfdb81cf0996879a62ce738572 /dev-libs/starpu | |
parent | dev-libs/starpu: add 1.3.9 (diff) | |
download | gentoo-4eb8d34c46e26c19017f03a4ef0a3734260ceb5f.tar.gz gentoo-4eb8d34c46e26c19017f03a4ef0a3734260ceb5f.tar.bz2 gentoo-4eb8d34c46e26c19017f03a4ef0a3734260ceb5f.zip |
dev-libs/starpu: crank up test timeouts
Avoid issues like (the specific test varies):
```
../build-aux/test-driver: line 112: 9422 Alarm clock "$@" >> "$log_file" 2>&1
FAIL: main/starpu_task_wait
```
Bug: https://bugs.gentoo.org/803158
Bug: https://bugs.gentoo.org/802621
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/starpu')
-rw-r--r-- | dev-libs/starpu/starpu-1.3.8.ebuild | 6 | ||||
-rw-r--r-- | dev-libs/starpu/starpu-1.3.9.ebuild | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/dev-libs/starpu/starpu-1.3.8.ebuild b/dev-libs/starpu/starpu-1.3.8.ebuild index 748f3df483f0..b3391281c6f7 100644 --- a/dev-libs/starpu/starpu-1.3.8.ebuild +++ b/dev-libs/starpu/starpu-1.3.8.ebuild @@ -82,6 +82,12 @@ src_configure() { } src_test() { + # Avoids timeouts in e.g. starpu_task_wait_for_all, starpu_task_wait + # See bug #803158 + # https://gitub.u-bordeaux.fr/starpu/starpu/-/blob/master/contrib/ci.inria.fr/job-1-check.sh + export STARPU_TIMEOUT_ENV=3600 + export MPIEXEC_TIMEOUT=3600 + MAKEOPTS='-j1' default } diff --git a/dev-libs/starpu/starpu-1.3.9.ebuild b/dev-libs/starpu/starpu-1.3.9.ebuild index 748f3df483f0..b3391281c6f7 100644 --- a/dev-libs/starpu/starpu-1.3.9.ebuild +++ b/dev-libs/starpu/starpu-1.3.9.ebuild @@ -82,6 +82,12 @@ src_configure() { } src_test() { + # Avoids timeouts in e.g. starpu_task_wait_for_all, starpu_task_wait + # See bug #803158 + # https://gitub.u-bordeaux.fr/starpu/starpu/-/blob/master/contrib/ci.inria.fr/job-1-check.sh + export STARPU_TIMEOUT_ENV=3600 + export MPIEXEC_TIMEOUT=3600 + MAKEOPTS='-j1' default } |