From 6094d06374a58a3ee7cdffabb7842ed199a99972 Mon Sep 17 00:00:00 2001 From: laokaiyao Date: Wed, 29 May 2024 12:58:50 +0800 Subject: [PATCH] fix(ci): fixed the i2s exhaust test case failure --- components/esp_driver_i2s/test_apps/i2s/main/test_i2s.c | 1 + 1 file changed, 1 insertion(+) diff --git a/components/esp_driver_i2s/test_apps/i2s/main/test_i2s.c b/components/esp_driver_i2s/test_apps/i2s/main/test_i2s.c index 7cac0ebcd3..1b7206d8c0 100644 --- a/components/esp_driver_i2s/test_apps/i2s/main/test_i2s.c +++ b/components/esp_driver_i2s/test_apps/i2s/main/test_i2s.c @@ -194,6 +194,7 @@ TEST_CASE("I2S_basic_channel_allocation_reconfig_deleting_test", "[i2s]") TEST_ESP_ERR(ESP_ERR_NOT_FOUND, i2s_channel_get_info(tx_handle, &chan_info)); /* Exhaust test */ + std_cfg.gpio_cfg.mclk = -1; i2s_chan_handle_t tx_ex[SOC_I2S_NUM] = {}; for (int i = 0; i < SOC_I2S_NUM; i++) { TEST_ESP_OK(i2s_new_channel(&chan_cfg, &tx_ex[i], NULL));