diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-12-11 05:29:30 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-12-11 05:29:30 +0100 |
commit | cf43404bf6ae7ba55c558e392f3a6288f4935bd5 (patch) | |
tree | 0b755e13c1a15451c0e7f31ce5763d7d895673a9 | |
parent | 94410d4589eefca6191eb868fe534c981d9454c3 (diff) | |
download | aports-cf43404bf6ae7ba55c558e392f3a6288f4935bd5.tar.bz2 aports-cf43404bf6ae7ba55c558e392f3a6288f4935bd5.tar.xz |
main/libssh: disable test that timeouts on s390x
31/33 Test #31: torture_threads_buffer ...........***Timeout 1500.04 sec
-rw-r--r-- | main/libssh/APKBUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/main/libssh/APKBUILD b/main/libssh/APKBUILD index 866b07b7f4..8b34c6031d 100644 --- a/main/libssh/APKBUILD +++ b/main/libssh/APKBUILD @@ -32,8 +32,11 @@ build() { } check() { + case "$CARCH" in + s390x) _disabled_tests="-E torture_threads_buffer" + esac cd "$builddir/build" - ctest --output-on-failure + ctest --output-on-failure $_disabled_tests } package() { |