-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Fix iostream related issues #5047
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
fa67b92
add stubs for more exception throw calls
igrr 97d0806
libc: make putc_r implementation weak
igrr 074dff7
libc: fix incorrect return value of _write_r call
igrr 6e906b2
tests: add test for output to std::cout
igrr 775b0a0
Merge branch 'master' into bugfix/iostream_issues
devyte 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 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#include <ESP8266WiFi.h> | ||
#include <BSTest.h> | ||
#include <sstream> | ||
#include <iostream> | ||
|
||
BS_ENV_DECLARE(); | ||
|
||
void setup() | ||
{ | ||
Serial.begin(115200); | ||
BS_RUN(Serial); | ||
} | ||
|
||
TEST_CASE("can print to std::cout", "[iostream]") | ||
{ | ||
std::stringstream test_stream(""); | ||
test_stream << "hello stream"; | ||
|
||
// empty the RX buffer, just in case | ||
Serial.readString(); | ||
|
||
USC0(0) |= (1 << UCLBE); // enable loopback | ||
std::cout << test_stream.str().c_str() << std::endl; | ||
delay(100); | ||
USC0(0) &= ~(1 << UCLBE); // disable loopback | ||
|
||
String result = Serial.readStringUntil('\n'); | ||
|
||
Serial.printf("result: '%s'\n", result.c_str()); | ||
|
||
CHECK(result == test_stream.str().c_str()); | ||
} | ||
|
||
void loop() { } |
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.
Does this address a current issue or ongoing discussion? Maybe a link could be added in the PR description if that's the case.
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.
Haven't seen this reported, probably because including iostream header caused compilation error, so no one got as far as using iostreams. Found when writing the test case.