sys/test_utils/interactive_sync: AVR puts to pgmspace#12941
Merged
aabadie merged 1 commit intoRIOT-OS:masterfrom Dec 13, 2019
Merged
sys/test_utils/interactive_sync: AVR puts to pgmspace#12941aabadie merged 1 commit intoRIOT-OS:masterfrom
aabadie merged 1 commit intoRIOT-OS:masterfrom
Conversation
kaspar030
approved these changes
Dec 13, 2019
Contributor
kaspar030
left a comment
There was a problem hiding this comment.
ACK.
Poor little AVR's.
Contributor
Author
|
Unrelated test fail, will re-trigger without running tests. |
Contributor
|
All green now, let's go! |
This was referenced Dec 15, 2019
fjmolinas
added a commit
to fjmolinas/RIOT
that referenced
this pull request
Mar 24, 2020
With RIOT-OS#12941 and RIOT-OS#13613 some of the blacklisting introduced in RIOT-OS#12461 are no longer needed, since `test_interactive_test_util` is lighter or adds no extra code.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Contribution description
When testing #12862 I realized some tests where not compiling on
arduino-uno, in the PR as well as in master. @kaspar030 helped me to figure out this was because of the application being so tite thatthe lenght of
RIOT_VERSIONcaused the section to overflow.The reason behind the overflow comes from the addition of
tests_interactive_sync_utilswhich adds some prints and constant data that goes into .bss. To reduce the strain imposed bytests_interactive_sync_utilswe useputs_pintest_utils/interactive_syncwhen compiling for__AVR__to store those prints inpgmspaceTesting procedure
Reproduce failure on master
RIOT_VERSION="short" BOARD=arduino-uno make -C tests/l2utilRIOT_VERSION="verylongversiontocauseoverflow" BOARD=arduino-uno make -C tests/l2util/This PR saves about ~60 bytes in RAM but increases the total FW size ~100bytes.
PR
master