-
Notifications
You must be signed in to change notification settings - Fork 58
Make src/rawtoaces_core/ be covered 100% #235
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
Changes from all commits
c1a0589
1281950
875e4f5
b80c30b
8fbf555
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -70,6 +70,7 @@ add_test ( NAME Test_SpectralData COMMAND Test_SpectralData ) | |
| add_executable ( | ||
| Test_IDT | ||
| testIDT.cpp | ||
| test_utils.cpp | ||
| ) | ||
|
|
||
| target_link_libraries( | ||
|
|
@@ -104,6 +105,7 @@ add_test ( NAME Test_Illum COMMAND Test_Illum ) | |
| add_executable ( | ||
| Test_DNGIdt | ||
| testDNGIdt.cpp | ||
| test_utils.cpp | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not entirely happy with exposing the rawtoaces_util code in the rawtoaces_core tests as an implicit dependency.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hopefully I got what you mean and did what asked. |
||
| ) | ||
|
|
||
| target_link_libraries( | ||
|
|
@@ -191,6 +193,7 @@ add_executable ( | |
| Test_ImageConverter | ||
| test_image_converter.cpp | ||
| test_utils.cpp | ||
| test_utils_image_converter.cpp | ||
| ) | ||
|
|
||
| target_link_libraries( | ||
|
|
@@ -235,4 +238,4 @@ if( ENABLE_COVERAGE AND COVERAGE_SUPPORTED ) | |
| add_subdirectory(config_tests/util) | ||
|
|
||
| generate_coverage_report() | ||
| endif() | ||
| endif() | ||
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.
perhaps that line is unreachable because of the
return, can we try removing it?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.
yeap. that was it.