Merge lp:~ted/whoopsie/recoverable-problem into lp:whoopsie
| Status: | Merged |
|---|---|
| Merged at revision: | 667 |
| Proposed branch: | lp:~ted/whoopsie/recoverable-problem |
| Merge into: | lp:whoopsie |
| Prerequisite: | lp:~ted/whoopsie/no-root-no-test |
| Diff against target: |
515 lines (+380/-10) 9 files modified
.bzrignore (+11/-0) Makefile (+6/-6) debian/libwhoopsie0.symbols (+16/-0) debian/rules (+2/-0) src/recoverable-problem.c (+177/-0) src/recoverable-problem.h (+48/-0) src/tests/Makefile (+17/-4) src/tests/recoverable_mock.sh (+4/-0) src/tests/test_recoverable.c (+99/-0) |
| To merge this branch: | bzr merge lp:~ted/whoopsie/recoverable-problem |
| Related bugs: |
| Reviewer | Review Type | Date Requested | Status |
|---|---|---|---|
| Evan | 2014-05-09 | Approve on 2015-06-05 | |
|
Review via email:
|
|||
Commit Message
libwhoopsie function to create a recoverable error
Description of the Change
Makes building a recoverable error in a program a bit easier. Putting it in libwhoopsie so many programs who are already using it can remove the duplicate code and just link into libwhoopsie. This is very non-Go-like, but we're okay with it.
- 599. By Ted Gould on 2015-06-05
-
Merge trunk
- 600. By Ted Gould on 2015-06-05
-
Adding in a stub for recoverable testing
- 601. By Ted Gould on 2015-06-05
-
Drop the identifier because it's disabled
- 602. By Ted Gould on 2015-06-05
-
Allow overriding the path to the recoverable problem script for testing
- 603. By Ted Gould on 2015-06-05
-
Adding a simple mock
- 604. By Ted Gould on 2015-06-05
-
Adding in some content and cmdline tests
- 605. By Ted Gould on 2015-06-05
-
Make sure we drop pidstr
- 606. By Ted Gould on 2015-06-05
-
Make it so that we can disable reporting of the recoverable errors
| Ted Gould (ted) wrote : | # |
Updated to trunk and tests added. Sorry that took so long.

Could I trouble you for a test case?
Otherwise this looks good.