Skip to content

Commit 8f0f7c6

Browse files
committed
Merge pull request atomvm#2115 from petermm/ci-simtest-c5-p4
CI: Enable ESP32-P4/C5 crypto and C5 wifi tests These changes are made under both the "Apache 2.0" and the "GNU Lesser General Public License 2.1 or later" license terms (dual license). SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
2 parents a7c2109 + 71e0118 commit 8f0f7c6

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/platforms/esp32/test/main/test_main.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -319,14 +319,11 @@ TEST_CASE("test_md5", "[test_run]")
319319
TEST_ASSERT(ret_value == OK_ATOM);
320320
}
321321

322-
// Full crypto suite not yet supported on ESP32-P4 simulator.
323-
#if !CONFIG_IDF_TARGET_ESP32P4 && !CONFIG_IDF_TARGET_ESP32C5
324322
TEST_CASE("test_crypto", "[test_run]")
325323
{
326324
term ret_value = avm_test_case("test_crypto.beam");
327325
TEST_ASSERT(ret_value == OK_ATOM);
328326
}
329-
#endif
330327

331328
TEST_CASE("test_monotonic_time", "[test_run]")
332329
{
@@ -610,7 +607,7 @@ TEST_CASE("test_rtc_slow", "[test_run]")
610607
}
611608

612609
// Only test wifi on simulator, not on QEMU
613-
#if !CONFIG_ETH_USE_OPENETH && !CONFIG_IDF_TARGET_ESP32H2 && !CONFIG_IDF_TARGET_ESP32P4 && !CONFIG_IDF_TARGET_ESP32C5
610+
#if !CONFIG_ETH_USE_OPENETH && !CONFIG_IDF_TARGET_ESP32H2 && !CONFIG_IDF_TARGET_ESP32P4
614611
TEST_CASE("test_wifi_example", "[test_run]")
615612
{
616613
term ret_value = avm_test_case("test_wifi_example.beam");

0 commit comments

Comments
 (0)