summaryrefslogtreecommitdiff
path: root/core/host/panic.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/host/panic.c')
-rw-r--r--core/host/panic.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/host/panic.c b/core/host/panic.c
index 468d024552..260329cc39 100644
--- a/core/host/panic.c
+++ b/core/host/panic.c
@@ -8,6 +8,7 @@
#include "common.h"
#include "panic.h"
+#include "test_util.h"
#include "util.h"
void panic_assert_fail(const char *msg, const char *func, const char *fname,
@@ -15,7 +16,7 @@ void panic_assert_fail(const char *msg, const char *func, const char *fname,
{
fprintf(stderr, "ASSERTION FAIL: %s:%d:%s - %s\n",
fname, linenum, func, msg);
- fflush(stderr);
+ task_dump_trace();
puts("Fail!"); /* Inform test runner */
fflush(stdout);