fix version lists in utests.pp
authorPascal Packaging Team <pkg-pascal-devel@lists.alioth.debian.org>
Mon, 4 Sep 2023 20:43:35 +0000 (21:43 +0100)
committerAbou Al Montacir <abou.almontacir@sfr.fr>
Mon, 4 Sep 2023 20:43:35 +0000 (21:43 +0100)
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 <plugwash@debian.org>

Gbp-Pq: Name fix-utest-version-lists.patch

fpcsrc/tests/utils/testsuite/utests.pp

index 55630639ff53bd1ac1c1d21ff81872aad6cb9a73..b525394f4ea47286387f29418f92bc995a9b6d58 100644 (file)
@@ -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);