test_exception.c 169 B

123456789
  1. #include "unity.h"
  2. #include "esp_system.h"
  3. #include "string.h"
  4. TEST_CASE("make exception", "[restart][reset=StoreProhibited,SW_CPU_RESET]")
  5. {
  6. *(int *) NULL = 0;
  7. }