Skip to content

Commit 988dbe2

Browse files
committed
ci(test): Skip some PSRAM tests in P4
1 parent 42bd745 commit 988dbe2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Diff for: tests/validation/psram/psram.ino

+4-2
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,11 @@ void setup() {
117117
RUN_TEST(test_memset_all_zeroes);
118118
RUN_TEST(test_memset_all_ones);
119119
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);
120+
#ifndef CONFIG_IDF_TARGET_ESP32P4
121+
// These tests are taking too long on ESP32-P4 in Wokwi
122+
RUN_TEST(test_memset_random);
122123
RUN_TEST(test_memcpy);
124+
#endif
123125
UNITY_END();
124126
}
125127

0 commit comments

Comments
 (0)