| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent df697c4 commit fbc9ef8
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -50,7 +50,10 @@ int wmain(int argc, wchar_t *wargv[]) { | |||
| 50 | 50 | #else | |
| 51 | 51 | // UNIX | |
| 52 | 52 | int main(int argc, char *argv[]) { | |
| 53 | - setvbuf(stderr, NULL, _IOLBF, 1024); | ||
| 53 | + // Disable stdio buffering, it interacts poorly with printf() | ||
| 54 | + // calls elsewhere in the program (e.g., any logging from V8.) | ||
| 55 | + setvbuf(stdout, nullptr, _IONBF, 0); | ||
| 56 | + setvbuf(stderr, nullptr, _IONBF, 0); | ||
| 54 | 57 | return node::Start(argc, argv); | |
| 55 | 58 | } | |
| 56 | 59 | #endif | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -22,6 +22,7 @@ test-tls-connect-address-family : PASS,FLAKY | |||
| 22 | 22 | [$system==macos] | |
| 23 | 23 | ||
| 24 | 24 | [$system==solaris] # Also applies to SmartOS | |
| 25 | + test-debug-signal-cluster : PASS,FLAKY | ||
| 25 | 26 | ||
| 26 | 27 | [$system==freebsd] | |
| 27 | 28 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments