mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
SD card example prints the line which looks like: Name: 00000 If only part of the line is received, the regular expression in the test still matches, and partial name is obtained. Later the example test expects to see the same name in the file read from the SD card. This check fails, because only partial name was received earlier. Fix by adding a CR to the regular expression so that the entire name is matched.