<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ayatana-indicator-display/tests/utils, branch main</title>
<subtitle>Ayatana Indicator Display Service
</subtitle>
<id>https://cgit.arctica-project.org/ayatana-indicator-display/atom?h=main</id>
<link rel='self' href='https://cgit.arctica-project.org/ayatana-indicator-display/atom?h=main'/>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/ayatana-indicator-display/'/>
<updated>2024-05-17T10:09:18+00:00</updated>
<entry>
<title>cppcheck: Fix missingOverride complaints.</title>
<updated>2024-05-17T10:09:18+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2024-05-04T09:00:46+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/ayatana-indicator-display/commit/?id=f1dde7a9245a257eac50c902b2080dcd25ba22c5'/>
<id>urn:sha1:f1dde7a9245a257eac50c902b2080dcd25ba22c5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tests: remove no longer needed parts</title>
<updated>2023-12-13T21:13:48+00:00</updated>
<author>
<name>Ratchanan Srirattanamet</name>
<email>ratchanan@ubports.com</email>
</author>
<published>2023-12-13T21:13:48+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/ayatana-indicator-display/commit/?id=fce2bb770d17a0f9487fd490eecf6c074c7a7273'/>
<id>urn:sha1:fce2bb770d17a0f9487fd490eecf6c074c7a7273</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tests/utils/qmain.cpp: Add missing include for libintl.h</title>
<updated>2022-06-30T16:57:10+00:00</updated>
<author>
<name>Jami Kettunen</name>
<email>jami.kettunen@protonmail.com</email>
</author>
<published>2022-06-30T16:57:10+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/ayatana-indicator-display/commit/?id=c61be8793b24365789a84d5d9b4d2c9ff33884e7'/>
<id>urn:sha1:c61be8793b24365789a84d5d9b4d2c9ff33884e7</id>
<content type='text'>
Fixes the following build error under musl libc:

  ../../../tests/utils/qmain.cpp: In function 'int main(int, char**)':
  ../../../tests/utils/qmain.cpp:47:5: error: 'bindtextdomain' was not declared in this scope
     47 |     bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR);
        |     ^~~~~~~~~~~~~~
  ../../../tests/utils/qmain.cpp:48:5: error: 'textdomain' was not declared in this scope
     48 |     textdomain(GETTEXT_PACKAGE);
        |     ^~~~~~~~~~
</content>
</entry>
<entry>
<title>tests/utils/CMakeLists.txt: Fix qt5_use_modules warning</title>
<updated>2021-12-08T12:28:36+00:00</updated>
<author>
<name>Robert Tari</name>
<email>robert@tari.in</email>
</author>
<published>2021-12-07T10:52:26+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/ayatana-indicator-display/commit/?id=ced7420e2765fbf7b4822c73c7b9fd3bf6950694'/>
<id>urn:sha1:ced7420e2765fbf7b4822c73c7b9fd3bf6950694</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tests/test-dbus-fixture.h: Turn TestDBusFixture::TestDBusFixture into an explicitly declared constructor.</title>
<updated>2021-08-04T15:06:27+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2021-06-09T10:11:47+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/ayatana-indicator-display/commit/?id=800cc787d343e9a78b9e4f7b146fa5b3effd6dbf'/>
<id>urn:sha1:800cc787d343e9a78b9e4f7b146fa5b3effd6dbf</id>
<content type='text'>
 Resolves issues like these:

 In file included from /rootdir/tests/unit/rotation-lock-test.cpp:20:
 In file included from /rootdir/tests/utils/test-dbus-fixture.h:22:
 In file included from /rootdir/tests/utils/glib-fixture.h:30:
 In file included from /usr/src/googletest/googletest/include/gtest/gtest.h:62:
 /usr/src/googletest/googletest/include/gtest/internal/gtest-internal.h:472:44: error: call to implicitly-deleted default constructor of 'RotationLockFixture_CheckIndicator_Test'
   Test* CreateTest() override { return new TestClass; }
                                            ^
 /rootdir/tests/unit/rotation-lock-test.cpp:46:1: note: in instantiation of member function 'testing::internal::TestFactoryImpl&lt;RotationLockFixture_CheckIndicator_Test&gt;::CreateTest' requested here
 TEST_F(RotationLockFixture, CheckIndicator)
 ^
 /usr/src/googletest/googletest/include/gtest/gtest.h:2381:3: note: expanded from macro 'TEST_F'
   GTEST_TEST_(test_fixture, test_name, test_fixture, \
   ^
 /usr/src/googletest/googletest/include/gtest/internal/gtest-internal.h:1565:15: note: expanded from macro 'GTEST_TEST_'
           new ::testing::internal::TestFactoryImpl&lt;GTEST_TEST_CLASS_NAME_(    \
               ^
 /rootdir/tests/unit/rotation-lock-test.cpp:46:1: note: explicitly defaulted function was implicitly deleted here
 /usr/src/googletest/googletest/include/gtest/gtest.h:2381:3: note: expanded from macro 'TEST_F'
   GTEST_TEST_(test_fixture, test_name, test_fixture, \
   ^
 /usr/src/googletest/googletest/include/gtest/internal/gtest-internal.h:1544:5: note: expanded from macro 'GTEST_TEST_'
     GTEST_TEST_CLASS_NAME_(test_suite_name, test_name)() = default;           \
     ^
 /usr/src/googletest/googletest/include/gtest/internal/gtest-internal.h:1533:3: note: expanded from macro 'GTEST_TEST_CLASS_NAME_'
   test_suite_name##_##test_name##_Test
  ^
 &lt;scratch space&gt;:198:1: note: expanded from here
 RotationLockFixture_CheckIndicator_Test
 ^
 /rootdir/tests/unit/rotation-lock-test.cpp:46:1: note: default constructor of 'RotationLockFixture_CheckIndicator_Test' is implicitly deleted because base class 'RotationLockFixture' has a deleted default constructor
 /usr/src/googletest/googletest/include/gtest/gtest.h:2381:3: note: expanded from macro 'TEST_F'
   GTEST_TEST_(test_fixture, test_name, test_fixture, \
   ^
 /usr/src/googletest/googletest/include/gtest/internal/gtest-internal.h:1542:9: note: expanded from macro 'GTEST_TEST_'
       : public parent_class {                                                 \
         ^
 /rootdir/tests/unit/rotation-lock-test.cpp:24:28: note: default constructor of 'RotationLockFixture' is implicitly deleted because base class 'TestDBusFixture' has a deleted default constructor
 class RotationLockFixture: public TestDBusFixture
                            ^
 /rootdir/tests/utils/test-dbus-fixture.h:32:5: note: explicitly defaulted function was implicitly deleted here
     TestDBusFixture() =default;
     ^
 /rootdir/tests/utils/test-dbus-fixture.h:69:36: note: default constructor of 'TestDBusFixture' is implicitly deleted because field 'service_dirs' of const-qualified type 'const std::vector&lt;std::string&gt;' (aka 'const vector&lt;basic_string&lt;char&gt;&gt;') would not be initialized
     const std::vector&lt;std::string&gt; service_dirs;
                                    ^
 2 warnings and 1 error generated.
</content>
</entry>
<entry>
<title>Rename GNOMELOCALEDIR -&gt; LOCALEDIR.</title>
<updated>2017-12-06T10:50:29+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2017-12-06T10:50:29+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/ayatana-indicator-display/commit/?id=2ca072ab8af352e110747d11e685db7edcd09bb2'/>
<id>urn:sha1:2ca072ab8af352e110747d11e685db7edcd09bb2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fork from Ubuntus' indicator-display project.</title>
<updated>2017-11-28T08:51:08+00:00</updated>
<author>
<name>Mike Gabriel</name>
<email>mike.gabriel@das-netzwerkteam.de</email>
</author>
<published>2017-11-28T08:47:03+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/ayatana-indicator-display/commit/?id=de76813c8421fd900e0d57038d28e8be693e33be'/>
<id>urn:sha1:de76813c8421fd900e0d57038d28e8be693e33be</id>
<content type='text'>
</content>
</entry>
<entry>
<title>silence 'no previous prototype' warning from clang</title>
<updated>2016-04-27T08:33:05+00:00</updated>
<author>
<name>Charles Kerr</name>
<email>charles.kerr@canonical.com</email>
</author>
<published>2016-04-27T08:33:05+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/ayatana-indicator-display/commit/?id=fcf75a545e25baa8777a310c648846537590fa2b'/>
<id>urn:sha1:fcf75a545e25baa8777a310c648846537590fa2b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>silence clang warning in PrintTo gtest helper</title>
<updated>2016-04-27T08:16:39+00:00</updated>
<author>
<name>Charles Kerr</name>
<email>charles.kerr@canonical.com</email>
</author>
<published>2016-04-27T08:16:39+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/ayatana-indicator-display/commit/?id=2e88906dc5ced1c5f601cef2514d8e559246e0d5'/>
<id>urn:sha1:2e88906dc5ced1c5f601cef2514d8e559246e0d5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>in tests/utils/adbd-server.h, fix a timing bug in the test scaffolding by creating the adb socket in AdbdServer's ctor instead of in its worker thread.</title>
<updated>2016-04-23T10:29:45+00:00</updated>
<author>
<name>Charles Kerr</name>
<email>charles.kerr@canonical.com</email>
</author>
<published>2016-04-23T10:29:45+00:00</published>
<link rel='alternate' type='text/html' href='https://cgit.arctica-project.org/ayatana-indicator-display/commit/?id=0f5534d22903f73e2d33ea2e29efb2307463bfa4'/>
<id>urn:sha1:0f5534d22903f73e2d33ea2e29efb2307463bfa4</id>
<content type='text'>
</content>
</entry>
</feed>
