[neon/extras/clazy/Neon/release] debian: autopkgtest: exclude qt6-header-fixes on armel/armhf

Pino Toscano null at kde.org
Wed Sep 7 22:14:02 BST 2022


Git commit fb89a57046a987d17da4917ea45a7a63d232d769 by Pino Toscano.
Committed on 12/01/2021 at 13:53.
Pushed by jriddell into branch 'Neon/release'.

autopkgtest: exclude qt6-header-fixes on armel/armhf

M  +3    -0    debian/changelog
M  +8    -1    debian/tests/run-tests

https://invent.kde.org/neon/extras/clazy/commit/fb89a57046a987d17da4917ea45a7a63d232d769

diff --git a/debian/changelog b/debian/changelog
index bde6b2b..dc2525f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,8 @@
 clazy (1.9-3) UNRELEASED; urgency=medium
 
+  [ Pino Toscano ]
+  * Exclude the qt6-header-fixes check on armel & armhf also when running the
+    run-tests autopkgtest.
 
  -- Debian Qt/KDE Maintainers <debian-qt-kde at lists.debian.org>  Tue, 12 Jan 2021 14:48:07 +0100
 
diff --git a/debian/tests/run-tests b/debian/tests/run-tests
index af51039..3a28f1a 100755
--- a/debian/tests/run-tests
+++ b/debian/tests/run-tests
@@ -6,9 +6,16 @@ set -e
 export CLANGXX="${CLANG}"
 export CLAZY_CLANG_APPLY_REPLACEMENTS="${CLANG_APPLY_REPLACEMENTS}"
 
+case "$(dpkg --print-architecture)" in
+armel|armhf)
+  # on armel & armhf there are OpenGL ES headers
+  RUN_TESTS_ARGS="${RUN_TESTS_ARGS} --exclude qt6-header-fixes"
+  ;;
+esac
+
 # show some facts about clang/clang++, so it is easier to debug issues
 ${CLANGXX} -E -x c - -v < /dev/null
 ${CLANGXX} -E -x c++ - -v < /dev/null
 
 cd tests
-./run_tests.py --verbose
+./run_tests.py --verbose ${RUN_TESTS_ARGS}



More information about the Neon-commits mailing list