libwacom: disable tests if isPower
One of the tests times out on PowerPC. ``` libwacom-powerpc64le-linux> libwacom-powerpc64le-linux> Ok: 5 libwacom-powerpc64le-linux> Expected Fail: 0 libwacom-powerpc64le-linux> Fail: 0 libwacom-powerpc64le-linux> Unexpected Pass: 0 libwacom-powerpc64le-linux> Skipped: 1 libwacom-powerpc64le-linux> Timeout: 1 ``
This commit is contained in:
parent
f3814afdc6
commit
3af3e96de8
1 changed files with 4 additions and 1 deletions
|
@ -41,7 +41,10 @@ stdenv.mkDerivation rec {
|
|||
libgudev
|
||||
];
|
||||
|
||||
doCheck = stdenv.hostPlatform == stdenv.buildPlatform && lib.meta.availableOn stdenv.hostPlatform valgrind;
|
||||
doCheck = stdenv.hostPlatform == stdenv.buildPlatform
|
||||
&& lib.meta.availableOn stdenv.hostPlatform valgrind
|
||||
&& !stdenv.hostPlatform.isPower # one test times out
|
||||
;
|
||||
|
||||
mesonFlags = [
|
||||
"-Dtests=${if doCheck then "enabled" else "disabled"}"
|
||||
|
|
Loading…
Reference in a new issue