ci: disable case witout runners

This commit is contained in:
michael 2020-01-22 13:17:56 +08:00
parent 24b16b0b19
commit d16ad4a67a
2 changed files with 6 additions and 3 deletions

View file

@ -31,6 +31,9 @@
#define HIGHEST_LIMIT 10000
#define LOWEST_LIMIT -10000
#if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32S2)
//no runners
// use PCNT to test the waveform of LEDC
static int16_t wave_count(int last_time)
{
@ -539,4 +542,4 @@ TEST_CASE("LEDC memory test", "[ledc][test_env=UT_T1_LEDC]")
TEST_ESP_OK(ledc_stop(test_speed_mode, LEDC_CHANNEL_0, 0));
}
#endif //!TEMPORARY_DISABLED_FOR_TARGETS(ESP32S2)

View file

@ -307,8 +307,8 @@ TEST_CASE("(SD) opendir, readdir, rewinddir, seekdir work as expected using UTF-
#endif //SDMMC HOST SUPPORTED
#if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32S2BETA)
#if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32S2)
//no runners
static void sdspi_speed_test(void *buf, size_t buf_size, size_t file_size, bool write);
TEST_CASE("(SDSPI) write/read speed test", "[fatfs][sd][test_env=UT_T1_SPIMODE][timeout=60]")