We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42bd745 commit 988dbe2Copy full SHA for 988dbe2
tests/validation/psram/psram.ino
@@ -117,9 +117,11 @@ void setup() {
117
RUN_TEST(test_memset_all_zeroes);
118
RUN_TEST(test_memset_all_ones);
119
RUN_TEST(test_memset_alternating);
120
- //This test is disabled because it takes too long to run on some wokwi boards
121
- //RUN_TEST(test_memset_random);
+#ifndef CONFIG_IDF_TARGET_ESP32P4
+ // These tests are taking too long on ESP32-P4 in Wokwi
122
+ RUN_TEST(test_memset_random);
123
RUN_TEST(test_memcpy);
124
+#endif
125
UNITY_END();
126
}
127
0 commit comments