Skip to content

Commit

Permalink
ci(test): Skip some PSRAM tests in P4
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasssvaz committed Feb 22, 2025
1 parent 42bd745 commit 988dbe2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/validation/psram/psram.ino
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,11 @@ void setup() {
RUN_TEST(test_memset_all_zeroes);
RUN_TEST(test_memset_all_ones);
RUN_TEST(test_memset_alternating);
//This test is disabled because it takes too long to run on some wokwi boards
//RUN_TEST(test_memset_random);
#ifndef CONFIG_IDF_TARGET_ESP32P4
// These tests are taking too long on ESP32-P4 in Wokwi
RUN_TEST(test_memset_random);
RUN_TEST(test_memcpy);
#endif
UNITY_END();
}

Expand Down

0 comments on commit 988dbe2

Please sign in to comment.