aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarius Gripsgard <marius@ubports.com>2021-02-03 14:50:34 +0100
committerGitHub <noreply@github.com>2021-02-03 14:50:34 +0100
commitbc3517bb367cd789e75f788757367d2b468f1ba6 (patch)
tree7a468d1cc4837d275adf66b726e9d216e3663194 /tests
parente3cb90d2da86fa15aaad0f42af398468d2fa4899 (diff)
downloadlibayatana-common-bc3517bb367cd789e75f788757367d2b468f1ba6.tar.gz
libayatana-common-bc3517bb367cd789e75f788757367d2b468f1ba6.tar.bz2
libayatana-common-bc3517bb367cd789e75f788757367d2b468f1ba6.zip
Revert "tests/: Don't run Lomiri related unit test, if library hasn't been bu…"
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt4
-rw-r--r--tests/tst_utils.cpp2
2 files changed, 0 insertions, 6 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index fb77924..1c5d318 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -1,9 +1,5 @@
find_package(GMock)
-if(URLDISPATCHER_FOUND)
- add_definitions( -DHAS_URLDISPATCHER )
-endif()
-
include_directories(
${CMAKE_SOURCE_DIR}/src
)
diff --git a/tests/tst_utils.cpp b/tests/tst_utils.cpp
index ac671f0..d7a4946 100644
--- a/tests/tst_utils.cpp
+++ b/tests/tst_utils.cpp
@@ -35,14 +35,12 @@ public:
}
};
-#ifdef HAS_URLDISPATCHER
TEST_F(XdgCurrentDesktopUtilsTest, isLomiri)
{
EXPECT_FALSE(is_lomiri());
setenv("XDG_CURRENT_DESKTOP", "Lomiri", 1);
EXPECT_TRUE(is_lomiri());
}
-#endif
TEST_F(XdgCurrentDesktopUtilsTest, isGnome)
{