From d7d8b47b898d1623534e43a9baae0d633ec21f02 Mon Sep 17 00:00:00 2001 From: Felipe Neves Date: Mon, 14 Oct 2019 13:58:14 -0300 Subject: [PATCH] unity/unity_config.h: changed configuration for setjmp usage For some reason after use modified context save routine, the local unit test app were crashed, the reason behind this resides on setjmp usage of test_runner, since this feature seems to not be used for nothing special (just was a default config), I changed the unity_config to replace the setjmp macros, this sounds less hacky. --- components/unity/include/unity_config.h | 1 + 1 file changed, 1 insertion(+) diff --git a/components/unity/include/unity_config.h b/components/unity/include/unity_config.h index b23a5fe129..67f882a9ad 100644 --- a/components/unity/include/unity_config.h +++ b/components/unity/include/unity_config.h @@ -26,6 +26,7 @@ #endif #define UNITY_EXCLUDE_TIME_H +#define UNITY_EXCLUDE_SETJMP_H void unity_flush(void); void unity_putc(int c);