-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement per-instance error handling #27
Merged
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
c024f14
Introduce exceptions internal to module(s).
tanaya-mankad d2ead71
Rewrite error and message handling for GridAxis.
tanaya-mankad b35833b
Fix tests.
tanaya-mankad b77c721
Disable fast fail on CI.
tanaya-mankad 75e0dff
Add functional header.
tanaya-mankad b7567b6
Update gh actions checkout.
tanaya-mankad b17812f
Try CI with Ubuntu 20.
tanaya-mankad 206e3e4
Try CI with Ubuntu 22.
tanaya-mankad 8b2b8ba
Try CI with only working OS values.
tanaya-mankad 1580727
Start moving toward saner cmake defaults.
tanaya-mankad 53e58b3
Update CI matrix.
tanaya-mankad 0d095ef
Apply clang-format file.
tanaya-mankad d23cf39
Revert return values to simple ones.
tanaya-mankad c9963ed
Remove default constructors and adjust tests. Pass callback by pointe…
tanaya-mankad 182dcf6
Remove vestigial error strings returned by funcs.
tanaya-mankad 16e2c35
Pass ptr to const function.
tanaya-mankad 6d46ec3
Improve const-correctness; remove redundancy in tests.
tanaya-mankad 89b4f05
Disambiguate constructors.
tanaya-mankad a6d346b
Construct test_gridded_data directly.
tanaya-mankad 1691b7f
Put back default constructors; alternative is exactly the same thing.
tanaya-mankad 5ff6281
Variable cleanup.
tanaya-mankad 21cc1e6
Remove global callback entirely.
tanaya-mankad 788bb26
Separate setting the callback and the context.
tanaya-mankad f59fc90
Pass string_view by value.
tanaya-mankad d16a384
Merge crom unnecessary branch.
tanaya-mankad 3d290aa
Integrate Courierr logging.
tanaya-mankad 651bb75
Make Courierr dependency non-optional; fix constructors and tests acc…
tanaya-mankad 70cad02
Update Courierr.
tanaya-mankad fbfa886
Add getter for Courierr instance.
tanaya-mankad 42857cb
Allow GridAxis to contain a different logger than owning RGI.
tanaya-mankad ca51659
Modify EXPECT_STDOUT for throwing functions (gcc).
tanaya-mankad File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[submodule "vendor/googletest"] | ||
path = vendor/googletest | ||
url = https://github.com/google/googletest.git | ||
[submodule "vendor/courierr"] | ||
path = vendor/courierr | ||
url = https://github.com/bigladder/courierr.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,6 @@ if (${PROJECT_NAME}_BUILD_TESTING) | |
endif() | ||
endif() | ||
|
||
|
||
add_subdirectory(src) | ||
add_subdirectory(vendor) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
c++11
flag was causing gcc / ubuntu-latest to not compile c++17