summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLW-archlinux2019-12-21 16:07:20 +0100
committerLW-archlinux2019-12-21 16:07:20 +0100
commitc0549e69372831fb95d5f278994c08fc5d88d5b0 (patch)
treeedcfc612250a5ca59742be0e8e03cb00fa33d78b
parentd1bbe1884bf9143bc0f4c21561aef131c2b16984 (diff)
downloadaur-c0549e69372831fb95d5f278994c08fc5d88d5b0.tar.gz
add timeout for tests to avoid unnecessary failure during check() on systems with nvidia cards
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD7
2 files changed, 6 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 59fc1833a0ac..b7a29f628803 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = libdrm-git
pkgdesc = Userspace interface to kernel DRM services, master git version
- pkgver = 2.4.99.r1.gdcc586c6
+ pkgver = 2.4.100.r42.gc70bd7b7
pkgrel = 1
url = http://dri.freedesktop.org/
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index 2f9e92434a24..572409b11dbf 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=libdrm-git
_realname=libdrm
-pkgver=2.4.99.r1.gdcc586c6
+pkgver=2.4.100.r42.gc70bd7b7
pkgrel=1
pkgdesc="Userspace interface to kernel DRM services, master git version"
arch=(i686 x86_64)
@@ -44,7 +44,10 @@ build() {
}
check() {
- meson test -C _build
+ # '-t 10' is needed for the 'threaded' test, which uses the default meson
+ # test timeout of 30 seconds. This is too short for many systems. It can be
+ # removed if upstream fixes the issue.
+ meson test -C _build -t 10
}
package() {