diff -Nru ycmd-0+20220401+gitdbe806f+ds/debian/changelog ycmd-0+20220401+gitdbe806f+ds/debian/changelog --- ycmd-0+20220401+gitdbe806f+ds/debian/changelog 2022-09-23 13:49:16.000000000 +0000 +++ ycmd-0+20220401+gitdbe806f+ds/debian/changelog 2022-10-03 11:59:21.000000000 +0000 @@ -1,8 +1,8 @@ -ycmd (0+20220401+gitdbe806f+ds-3build2) kinetic; urgency=medium +ycmd (0+20220401+gitdbe806f+ds-3ubuntu1) kinetic; urgency=medium - * Rebuild against new llvm-toolchain-15 with fixed symlinks. + * Explicitly use clangd-14 for the unit tests. - -- Gianfranco Costamagna Fri, 23 Sep 2022 15:49:16 +0200 + -- Matthias Klose Mon, 03 Oct 2022 13:59:21 +0200 ycmd (0+20220401+gitdbe806f+ds-3build1) kinetic; urgency=medium diff -Nru ycmd-0+20220401+gitdbe806f+ds/debian/tests/control ycmd-0+20220401+gitdbe806f+ds/debian/tests/control --- ycmd-0+20220401+gitdbe806f+ds/debian/tests/control 2022-08-08 17:17:59.000000000 +0000 +++ ycmd-0+20220401+gitdbe806f+ds/debian/tests/control 2022-10-03 11:59:10.000000000 +0000 @@ -1,6 +1,6 @@ Tests: upstream-unittest Depends: @, python3-hamcrest, python3-webtest, python3-requests, python3-psutil, - clangd, + clangd-14, python3-jedi, python3-numpydoc, node-typescript, gopls, gccgo-go, diff -Nru ycmd-0+20220401+gitdbe806f+ds/debian/tests/upstream-unittest ycmd-0+20220401+gitdbe806f+ds/debian/tests/upstream-unittest --- ycmd-0+20220401+gitdbe806f+ds/debian/tests/upstream-unittest 2022-08-08 17:17:59.000000000 +0000 +++ ycmd-0+20220401+gitdbe806f+ds/debian/tests/upstream-unittest 2022-10-03 11:59:02.000000000 +0000 @@ -1,6 +1,9 @@ #!/bin/sh set -e +# explicitly use clangd-14 +PATH="/usr/lib/llvm-14/bin:$PATH" + if [ -n "${AUTOPKGTEST_TMP}" ]; then #FIXME: the python tests (probably parso) need a writeable home export HOME="${AUTOPKGTEST_TMP}/home" diff -Nru ycmd-0+20220401+gitdbe806f+ds/debian/tests/upstream-unittest-golang ycmd-0+20220401+gitdbe806f+ds/debian/tests/upstream-unittest-golang --- ycmd-0+20220401+gitdbe806f+ds/debian/tests/upstream-unittest-golang 2022-08-08 17:17:59.000000000 +0000 +++ ycmd-0+20220401+gitdbe806f+ds/debian/tests/upstream-unittest-golang 2022-10-03 11:59:02.000000000 +0000 @@ -1,6 +1,9 @@ #!/bin/sh set -e +# explicitly use clangd-14 +PATH="/usr/lib/llvm-14/bin:$PATH" + if [ -n "${AUTOPKGTEST_TMP}" ]; then #FIXME: the python tests (probably parso) need a writeable home export HOME="${AUTOPKGTEST_TMP}/home"