-
Notifications
You must be signed in to change notification settings - Fork 51
Change line endings from \r\n to \n only #126
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
Conversation
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.
Looks good!
There are platforms, that if you don't put |
@RonEld - what do you mean with OTHER platforms? This repository is for mbed-os, right? Isn't Mbed OS then the only platform we need to consider with regards to this repository?
|
@JanneKiiskila I meant platforms, as in boards, not OS. I tried on NRF52840 , and I didn't get the newline at the beginning of the line. However, perhaps it is because of missing |
I checked, and after modifying |
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.
Looks Good To Me
Merge it in! |
@sbutcher-arm, @Patater: What are the plans for this patch? Please note that it is very out of date. Should I rebase/rework it? |
@andresag01 - Yes, please rebase it. @k-stachowiak and @AndrzejKurek should then review again afterwards. Thanks. |
I have rebased the changes but the CI needs to be re-run to ensure that the expected regex patterns still match. |
I looked at the test failure logs. I found two failures, one known - memory allocation issue, and one new - apparently a stack overflow. This may be a CI stability issue, or, as a memory issue, related to the known one. |
@k-stachowiak: I think these issues are not directly related to this change. The benchmark application is clearly having trouble to stay within the allocated stack. If I had to guess, I would say the other targets tested are also having overflow problems, but it is probably not detected. At first glance, it seems that the new test_crypt and test_rng functions in the benchmark application have a relatively high stack of over 772 bytes and 624 bytes respectively. Given that this is only the 3 or so function in the call stack its not surprising that at some point there is an overflow if the overall stack size is about 3-4KB |
@andresag01 Thanks for the clarification. I too don't see a connection between the CI errors and the PR changes. Additionally, since my approval was not cancelled by the updates, I'll just confirm commenting, that I approve the rebased chages. |
CI failures are due to heap and stack depletion - known issues. Therefore - labelling as 'ready for merge'. |
This makes the new line printing consistent across all the sample applications. This change is a superset of #123.