summaryrefslogtreecommitdiffstats
path: root/tests/stubs/die.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stubs/die.c')
-rw-r--r--tests/stubs/die.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/stubs/die.c b/tests/stubs/die.c
new file mode 100644
index 000000000000..84bb401ab03e
--- /dev/null
+++ b/tests/stubs/die.c
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#include <stdarg.h>
+#include <stdio.h>
+#include <tests/test.h>
+
+void die(const char *msg, ...)
+{
+ /* die() can be called in middle a function, so we should not allow for it to return */
+ static char msg_buf[256];
+ va_list v;
+ va_start(v, msg);
+ vsnprintf(msg_buf, ARRAY_SIZE(msg_buf), msg, v);
+ va_end(v);
+ fail_msg("%s", msg_buf);
+}