Received: from knopi.disroot.org (knopi.disroot.org [178.21.23.139]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id C1A59781A15 for <~alpine/aports@lists.alpinelinux.org>; Sun, 18 Aug 2019 21:27:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id BBDAF29EB4 for <~alpine/aports@lists.alpinelinux.org>; Sun, 18 Aug 2019 23:27:32 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Oq8sbNJRxVBu; Sun, 18 Aug 2019 23:27:31 +0200 (CEST) From: Bart Ribbers DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1566163651; bh=s9Bf8ULpuhxitvt8cjCk9wB4Y++vguQhZYrFZ2xSR3I=; h=From:To:Cc:Subject:Date; b=Nh6mOVDBQ7ycA2TJOeReH9bHaYTDP3JEQ4NYgBJyYGjx0jLup9HrSl1jyMq/oi9lX UJ8ukqHrkCUzsCpmgaM+5+sxQvIc/jKId4xjHTRV8vWRZ1bIK+6F4dgi0yjBcYTPCc xMRivwPVAM2w9qM1Mu98ZKYHdSsdoKBohAAvxYtdaYTvPoRXftClh/1BCEuo9eH4JL kHItrLRQS1tiLT3UrRLgfnHVavmO6bo8hldFKUdCjUZ8UsvAoCUul8+MPQ3uOxZwdA Czl0VFTaJnq40CAYHVUi//Ql8OoFje/VPn7wtimBJ7Cfrhbu3ULB9a7iUs+t7CBY7A oB4tfWfAjtYpg== To: ~alpine/aports@lists.alpinelinux.org Cc: Bart Ribbers Subject: [PATCH] testing/nlohmann-json: disable test-unicode_all on aarch64 Date: Sun, 18 Aug 2019 23:27:29 +0200 Message-Id: <20190818212729.9047-1-bribbers@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit --- testing/nlohmann-json/APKBUILD | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/testing/nlohmann-json/APKBUILD b/testing/nlohmann-json/APKBUILD index b1dd0c6e23..3289ddd232 100644 --- a/testing/nlohmann-json/APKBUILD +++ b/testing/nlohmann-json/APKBUILD @@ -22,7 +22,12 @@ build() { } check() { - CTEST_OUTPUT_ON_FAILURE=TRUE ctest + local skipped_tests= + if [ "$CARCH" = "aarch64" ]; then + # test-unicode_all takes too long and times out + skipped_tests="$skipped_tests|test-unicode_all" + fi + CTEST_OUTPUT_ON_FAILURE=TRUE ctest -E "($skipped_tests)" } package() { -- 2.21.0