Skip to content
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

Freestanding support #208

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Open

Freestanding support #208

wants to merge 14 commits into from

Conversation

cschreib
Copy link
Member

@cschreib cschreib commented Mar 23, 2025

This PR implements changes to improve support for freestanding platforms, see #189:

  • [API] Fixed inplace_any does not move correctly #207: inplace_any move constructor was not moving the inner object correctly.
  • [API] Added file output customization points snitch::io::file_open, file_write, and file_close.
  • [Build] Added SNITCH_MAX_FILE_OBJECT_SIZE_BYTES to specify the maximum size of a file object (the object used to open/write to a file, not the size of the file itself).
  • [Build] Added SNITCH_WITH_STDOUT to enable/disable the default console implementation with stdout.
  • [Build] Added SNITCH_WITH_STD_FILE_IO to enable/disable the default file output implementation with <cstdio>.
  • [Internal] Remove explicit calls to std::memmove and std::memcpy.

Copy link

codecov bot commented Mar 23, 2025

Codecov Report

Attention: Patch coverage is 91.66667% with 5 lines in your changes missing coverage. Please review.

Project coverage is 93.97%. Comparing base (cec4a04) to head (4bcf4d2).

Files with missing lines Patch % Lines
src/snitch_file.cpp 83.33% 4 Missing ⚠️
include/snitch/snitch_any.hpp 96.87% 1 Missing ⚠️
Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main     #208      +/-   ##
==========================================
- Coverage   94.01%   93.97%   -0.05%     
==========================================
  Files          30       30              
  Lines        1754     1775      +21     
==========================================
+ Hits         1649     1668      +19     
- Misses        105      107       +2     
Files with missing lines Coverage Δ
include/snitch/snitch_function.hpp 100.00% <ø> (ø)
src/snitch_append.cpp 94.11% <100.00%> (ø)
src/snitch_console.cpp 100.00% <ø> (ø)
src/snitch_string_utility.cpp 100.00% <100.00%> (ø)
include/snitch/snitch_any.hpp 97.72% <96.87%> (-2.28%) ⬇️
src/snitch_file.cpp 75.75% <83.33%> (+5.16%) ⬆️

... and 1 file with indirect coverage changes


Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update cec4a04...4bcf4d2. Read the comment docs.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@cschreib cschreib linked an issue Mar 31, 2025 that may be closed by this pull request
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

inplace_any does not move correctly Support for freestanding C++
1 participant