<feed xmlns='http://www.w3.org/2005/Atom'>
<title>sdbusplus/test/exception, branch master</title>
<subtitle>OpenBMC systemd DBUS binding API sources</subtitle>
<id>https://git.raptorcs.com/git/sdbusplus/atom?h=master</id>
<link rel='self' href='https://git.raptorcs.com/git/sdbusplus/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/sdbusplus/'/>
<updated>2018-09-21T19:29:24+00:00</updated>
<entry>
<title>exception: Add .get_errno() method</title>
<updated>2018-09-21T19:29:24+00:00</updated>
<author>
<name>Adriana Kobylak</name>
<email>anoo@us.ibm.com</email>
</author>
<published>2018-09-21T16:50:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/sdbusplus/commit/?id=33335b35533cc1e08096bc74f09283e68eb36205'/>
<id>urn:sha1:33335b35533cc1e08096bc74f09283e68eb36205</id>
<content type='text'>
Add the .get_errno() method to provide the errno value from SdBusError.

Closes openbmc/sdbusplus#22

Tested: Added check for the new method to the exception
unit test suite. Also verified external callers get the right
errno value with:
    catch (const SdBusError&amp; e)
    {
        int errno = e.get_errno());
    }

Change-Id: Idddfa7f1bd9cfabfaf89e4d6c83146b4b9af211f
Signed-off-by: Adriana Kobylak &lt;anoo@us.ibm.com&gt;
</content>
</entry>
<entry>
<title>update .clang-format header inclusion order</title>
<updated>2018-08-31T19:44:45+00:00</updated>
<author>
<name>Patrick Venture</name>
<email>venture@google.com</email>
</author>
<published>2018-08-31T16:19:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/sdbusplus/commit/?id=95269dbc8c38fb41ac50639eafa8d8c3e57ec748'/>
<id>urn:sha1:95269dbc8c38fb41ac50639eafa8d8c3e57ec748</id>
<content type='text'>
Added the header inclusion order to the .clang-format file generated
these changes.

Change-Id: Ia31b21d7ea451cac0309828006bc17c27cbd5bd5
Signed-off-by: Patrick Venture &lt;venture@google.com&gt;
</content>
</entry>
<entry>
<title>clang-format-6.0 bump fixes</title>
<updated>2018-08-31T16:15:13+00:00</updated>
<author>
<name>Patrick Venture</name>
<email>venture@google.com</email>
</author>
<published>2018-08-31T16:12:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/sdbusplus/commit/?id=0b5d1e013f79546a12abf5648906ad08ca4df0f4'/>
<id>urn:sha1:0b5d1e013f79546a12abf5648906ad08ca4df0f4</id>
<content type='text'>
The bump to use clang-format-6.0 now reports these issues.

Change-Id: Ice27766e161356f08c98923a256a98af787ac8a2
Signed-off-by: Patrick Venture &lt;venture@google.com&gt;
</content>
</entry>
<entry>
<title>Spelling fixes</title>
<updated>2018-08-14T16:59:13+00:00</updated>
<author>
<name>Gunnar Mills</name>
<email>gmills@us.ibm.com</email>
</author>
<published>2018-08-14T16:59:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/sdbusplus/commit/?id=31a4b13701c2084bcf3ec19fde7be29808205ab4'/>
<id>urn:sha1:31a4b13701c2084bcf3ec19fde7be29808205ab4</id>
<content type='text'>
Spelling errors found using github.com/lucasdemarchi/codespell
A tool to fix common misspellings.
This tool is licensed under GNU General Public License, version 2.

Change-Id: I99921bb9541fb37cb8999337a72d540494fbb4d7
Signed-off-by: Gunnar Mills &lt;gmills@us.ibm.com&gt;
</content>
</entry>
<entry>
<title>Remove multiple inheritance from SdBusError</title>
<updated>2018-08-06T17:15:16+00:00</updated>
<author>
<name>Vernon Mauery</name>
<email>vernon.mauery@linux.intel.com</email>
</author>
<published>2018-08-01T19:29:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/sdbusplus/commit/?id=fac43a650e59e873688d5fc6e06b5bdc88ba0546'/>
<id>urn:sha1:fac43a650e59e873688d5fc6e06b5bdc88ba0546</id>
<content type='text'>
SdBusError now has a direct line of inheritance down to std::exception
and will behave better when trying to catch it as a std::exception.

Add test cases to check that SdBusError is actually caught by
std::exception and all its other base classes.

Change-Id: I83e614219a1c47ec874ee0b4f14096a5e69ac17d
Signed-off-by: Vernon Mauery &lt;vernon.mauery@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>SdBusError: Add test cases</title>
<updated>2018-07-09T18:20:42+00:00</updated>
<author>
<name>William A. Kennington III</name>
<email>wak@google.com</email>
</author>
<published>2018-06-23T02:23:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/sdbusplus/commit/?id=874e82e5e1e7a7b5ffa3b8be9737a2ec01e2ac21'/>
<id>urn:sha1:874e82e5e1e7a7b5ffa3b8be9737a2ec01e2ac21</id>
<content type='text'>
This adds basic unit testing to the SdBusError class so we have full
coverage of all the functionality.

Tested:
    Ran through the unit test suite including the changes that build
    valgrind runs and code coverage suppport.

Change-Id: I6d3bdbd2e0332ae5372796cb2a380ccddbee10ec
Signed-off-by: William A. Kennington III &lt;wak@google.com&gt;
</content>
</entry>
</feed>
