| Index: runtime/platform/assert.cc
|
| diff --git a/runtime/platform/assert.cc b/runtime/platform/assert.cc
|
| index cb7d21a09023182716af661edce3aebf78a73d12..5410046a9e515e48c923bbaf3069ad2e1e63107b 100644
|
| --- a/runtime/platform/assert.cc
|
| +++ b/runtime/platform/assert.cc
|
| @@ -30,6 +30,7 @@ void DynamicAssertionHelper::Fail(const char* format, ...) {
|
| // Get the message from the string stream and dump it on stderr.
|
| std::string message = stream.str();
|
| fprintf(stderr, "%s", message.c_str());
|
| + fflush(stderr);
|
|
|
| // In case of failed assertions, abort right away. Otherwise, wait
|
| // until the program is exiting before producing a non-zero exit
|
|
|