#
36137e09 |
| 18-Dec-2024 |
Patrick Williams <patrick@stwcx.xyz> |
clang-format: re-format for clang-19
clang-format-19 isn't compatible with the clang-format-18 output, so we need to reformat the code with the latest version. A few parameters in clang-tidy have b
clang-format: re-format for clang-19
clang-format-19 isn't compatible with the clang-format-18 output, so we need to reformat the code with the latest version. A few parameters in clang-tidy have been deprecated, so adjust the style file accordingly.
See Ie2f6eb3b043f2d655c9df806815afd7971fd0947 for updated style. See I88192b41ab7a95599a90915013579608af7bc56f for clang-19 enablement.
Change-Id: I65cb0501917fee37f007ed97ce973e0dd07170fa Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
show more ...
|
#
4638a2e9 |
| 06-Dec-2024 |
Jayanth Othayoth <ojayanth@gmail.com> |
clang-tidy: Fix exception specification mismatch
The following error was reported during clang-tidy enablement due to the exception specification of the overriding function being more lax than the b
clang-tidy: Fix exception specification mismatch
The following error was reported during clang-tidy enablement due to the exception specification of the overriding function being more lax than the base version. This fix ensures that the exception specification matches the base class destructor in gtest::Test.
''' ./test/async/fdio.cpp:30:5: error: exception specification of overriding function is more lax than base version 30 | ~FdioTest() override /usr/local/include/gtest/gtest.h:247:11: note: overridden virtual function is here 247 | virtual ~Test(); '''
Tested: Verified build and unit testing.
Change-Id: I5c016fed60afddb8ceda6f8c0d5f97d660a015f7 Signed-off-by: Jayanth Othayoth <ojayanth@gmail.com>
show more ...
|
#
2a12ae12 |
| 23-Oct-2024 |
Jagpal Singh Gill <paligill@gmail.com> |
add async fd sender receiver for coroutines
Add async sender receiver for file descriptor based events. The user of the async file descriptor needs to initialize a fdio instance and then call next()
add async fd sender receiver for coroutines
Add async sender receiver for file descriptor based events. The user of the async file descriptor needs to initialize a fdio instance and then call next() to get each new event for the fd.
Tested: ``` > meson test -C builddir test_async_fdio ninja: Entering directory `/host/repos/sdbusplus/builddir' ninja: no work to do. 1/1 test_async_fdio OK 6.01s
Ok: 1 Expected Fail: 0 Fail: 0 Unexpected Pass: 0 Skipped: 0 Timeout: 0
Full log written to /host/repos/sdbusplus/builddir/meson-logs/testlog.txt ```
Change-Id: I1b4f16963e6096f30484c4a6df471e64ed24448b Signed-off-by: Jagpal Singh Gill <paligill@gmail.com>
show more ...
|