commit | a8b8cd7be9ddb06a90cc30dadfc9f6100e614201 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Mon Mar 18 16:04:06 2024 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Mar 18 16:04:06 2024 +0000 |
tree | 0f2c1699dbfae0d1297e14aa247bf04e7eeefc7c | |
parent | 5067ef29d4f4e5a7f589dc5c4c362621c2523da0 [diff] | |
parent | 7b95053aa0480a05bc98de2d97d18dfd43e16f01 [diff] |
Merge "Remove workaround for a fixed bug." into main
diff --git a/tests/libs/CHECK.h b/tests/libs/CHECK.h index 5870b07..a590233 100644 --- a/tests/libs/CHECK.h +++ b/tests/libs/CHECK.h
@@ -26,7 +26,7 @@ static inline void check_failure(const char* file, int line, const char* function, const char* failed_expression) { fprintf(stderr, "%s:%d: %s: assertion \"%s\" failed\n", file, line, function, failed_expression); - fflush(stderr); + fflush(NULL); abort(); }