aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2019-04-26 12:56:12 +0200
committerDavid Seifert <soap@gentoo.org>2019-04-26 12:56:12 +0200
commit8526b5a79795fe821749ecd985dc26fcf30728f9 (patch)
tree1bb3c203b5e8231c2848760b2ff8026e29a93acc
parented8af16e19fbfb727de647df738ccdcb3c6ac3b5 (diff)
downloadlibnitrokey-8526b5a79795fe821749ecd985dc26fcf30728f9.tar.gz
libnitrokey-8526b5a79795fe821749ecd985dc26fcf30728f9.tar.bz2
Fix regex in unittest for pre-releases and git checkouts
-rw-r--r--CMakeLists.txt2
-rw-r--r--unittest/test_offline.cc4
2 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e583d30..6d59430 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -130,7 +130,7 @@ execute_process(
)
ENDIF()
IF((NOT ${ADD_GIT_INFO}) OR (${PROJECT_VERSION_GIT_RETURN_CODE}))
- SET(PROJECT_VERSION_GIT "unknown")
+ SET(PROJECT_VERSION_GIT "v${PROJECT_VERSION}")
ENDIF()
MESSAGE(STATUS "Setting Git library version to: " ${PROJECT_VERSION_GIT} )
configure_file("version.cc.in" "version.cc" @ONLY)
diff --git a/unittest/test_offline.cc b/unittest/test_offline.cc
index 279c38f..320ad48 100644
--- a/unittest/test_offline.cc
+++ b/unittest/test_offline.cc
@@ -178,8 +178,8 @@ TEST_CASE("Test version getter", "[fast]") {
// Optional <patch> field is allowed as well.
INFO("This test will fail, if the full git commit version was not collected during library build.");
std::string s = library_version;
- std::string version("v[0-9]+\\.[0-9]+(\\.[0-9]+)?");
- std::string git_suffix("-[0-9]+-g[0-9a-z]+");
+ std::string version("(pre-)?v[0-9]+\\.[0-9]+(\\.[0-9]+)?");
+ std::string git_suffix("(-[0-9]+)+-g[0-9a-z]+");
std::regex pattern(version + "(" + git_suffix + ")?");
REQUIRE(std::regex_match(s, pattern));
}