tests: extend the regex matching string versions
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Tue, 7 Feb 2023 21:13:57 +0000 (22:13 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 8 Feb 2023 13:25:17 +0000 (14:25 +0100)
We need to match release candidate versions too.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
bindings/cxx/tests/tests-misc.cpp
bindings/python/tests/tests_module.py
tests/tests-misc.c

index 0a2c5632d542cbf3a30ba4e36f2b0932d4e1501b..55f2232615dbe4dfef913722b816a77c4d606b33 100644 (file)
@@ -71,7 +71,7 @@ TEST_CASE("api_version() returns a valid API version", "[misc]")
        SECTION("check api_version() format")
        {
                REQUIRE_THAT(::gpiod::api_version(),
-                            regex_matcher("^[0-9][1-9]?\\.[0-9][1-9]?([\\.0-9]?|\\-devel)$"));
+                            regex_matcher("^[0-9][1-9]?\\.[0-9][1-9]?([\\.0-9]?|\\-devel|\\-rc[0-9])$"));
        }
 }
 
index de563566ab207711d4f4e53e20e52ad52cedad05..d4c90e2cc7d65f9db4c65598a1b332f2497a8826 100644 (file)
@@ -51,7 +51,7 @@ class IsGPIOChip(TestCase):
 
 class VersionString(TestCase):
 
-    VERSION_PATTERN = "^[0-9][1-9]?\\.[0-9][1-9]?(\\.[0-9]?|\\-devel)$"
+    VERSION_PATTERN = "^[0-9][1-9]?\\.[0-9][1-9]?(\\.[0-9]?|\\-devel|\\-rc[0-9])$"
 
     def test_api_version_string(self):
         self.assertRegex(gpiod.api_version, VersionString.VERSION_PATTERN)
index 45b92f6675e2a01e5cea223f52ec21a8a20073b9..fa8deca2e2cfd5ea6b4112f91e1282e02808364a 100644 (file)
@@ -67,7 +67,7 @@ GPIOD_TEST_CASE(is_gpiochip_null_path)
 
 GPIOD_TEST_CASE(version_string)
 {
-       static const gchar *const pattern = "^[0-9][1-9]?\\.[0-9][1-9]?([\\.0-9]?|\\-devel)$";
+       static const gchar *const pattern = "^[0-9][1-9]?\\.[0-9][1-9]?([\\.0-9]?|\\-devel|\\-rc[0-9])$";
 
        g_autoptr(GError) err = NULL;
        g_autoptr(GRegex) regex = NULL;