system: re-enable esp_event, real_time_stats and pthread examples and test for C2

This commit is contained in:
Marius Vikhammer
2022-06-16 16:15:34 +08:00
parent 136c873364
commit c6260e66e5
11 changed files with 14 additions and 34 deletions

View File

@@ -97,8 +97,6 @@ TEST_CASE("pthread C++", "[pthread]")
global_sp_recur_mtx.reset();
}
#if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32C2)
//IDF-5142
static void task_test_sandbox()
{
std::stringstream ss;
@@ -138,6 +136,4 @@ TEST_CASE("pthread mix C/C++", "[pthread]")
t1.join();
}
}
#endif //!TEMPORARY_DISABLED_FOR_TARGETS(ESP32C2)
#endif

View File

@@ -174,9 +174,6 @@ typedef struct {
} destr_test_state_t;
#if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32C2)
//IDF-5142
static void s_test_repeat_destructor(void *vp_state);
static void *s_test_repeat_destructor_thread(void *vp_state);
@@ -253,4 +250,3 @@ static void *s_test_repeat_destructor_thread(void *vp_state)
}
pthread_exit(NULL);
}
#endif //!TEMPORARY_DISABLED_FOR_TARGETS(ESP32C2)