Merge branch 'feature/core_c6_component_tests' into 'master'

ci: update idf-core related tests for C6

Closes IDF-6888

See merge request espressif/esp-idf!22282
This commit is contained in:
Marius Vikhammer
2023-02-14 16:47:52 +08:00
40 changed files with 111 additions and 113 deletions

View File

@@ -44,7 +44,7 @@ TEST_CASE("Capabilities allocator test", "[heap]")
TEST_ASSERT(free8<=(free8start-10*1024));
TEST_ASSERT(free32<=(free32start-10*1024));
//Assume we got DRAM back
TEST_ASSERT((((int)m1)&0xFF000000)==0x3F000000);
TEST_ASSERT(esp_ptr_in_dram(m1));
free(m1);
//The goal here is to allocate from IRAM. Since there is no external IRAM (yet)

View File

@@ -7,7 +7,6 @@ from pytest_embedded import Dut
@pytest.mark.generic
@pytest.mark.supported_targets
@pytest.mark.temp_skip_ci(targets=['esp32c6'], reason='test failed')
@pytest.mark.parametrize(
'config',
[
@@ -17,9 +16,7 @@ from pytest_embedded import Dut
]
)
def test_heap_poisoning(dut: Dut) -> None:
dut.expect_exact('Press ENTER to see the list of tests')
dut.write('*')
dut.expect_unity_test_output(timeout=300)
dut.run_all_single_board_cases()
@pytest.mark.generic
@@ -34,9 +31,7 @@ def test_heap_poisoning(dut: Dut) -> None:
]
)
def test_heap(dut: Dut) -> None:
dut.expect_exact('Press ENTER to see the list of tests')
dut.write('*')
dut.expect_unity_test_output(timeout=300)
dut.run_all_single_board_cases()
@pytest.mark.generic