From: Pascal Packaging Team Date: Mon, 18 Dec 2023 22:01:08 +0000 (+0100) Subject: fix version lists in utests.pp X-Git-Tag: archive/raspbian/3.2.2+dfsg-32+rpi1~1^2~14 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c210dcaacc6474f0431463b17cfc705f35e8c9cb;p=fpc.git fix version lists in utests.pp utests.pp has three version lists, the first defining an enumerated type and then the second two defining textual versions and svn branches for each enumeration entry. Unfortunately the first list was not consistent with each other resulting in a compile error. This patch expands the first list to match the others. Author: Peter Michael Green Gbp-Pq: Name fix-utest-version-lists.patch --- diff --git a/fpcsrc/tests/utils/testsuite/utests.pp b/fpcsrc/tests/utils/testsuite/utests.pp index 55630639..b525394f 100644 --- a/fpcsrc/tests/utils/testsuite/utests.pp +++ b/fpcsrc/tests/utils/testsuite/utests.pp @@ -211,7 +211,11 @@ type ver_3_0_3, ver_3_0_4, ver_3_0_5, - ver_3_1_1); + ver_3_1_1, + ver_3_2_0, + ver_3_2_1, + ver_3_3_1 +); const ver_trunk = high (known_versions);