Skip to content

Commit

Permalink
host emulation: littlefs was not fully enabled (esp8266#6342)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-a-v authored and earlephilhower committed Jul 25, 2019
1 parent 17ee380 commit aecf113
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/host/common/ArduinoMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ static struct option options[] =
void cleanup ()
{
mock_stop_spiffs();
// mock_stop_littlefs();
mock_stop_littlefs();
mock_stop_uart();
}

Expand Down Expand Up @@ -182,7 +182,7 @@ int main (int argc, char* const argv [])

for (;;)
{
int n = getopt_long(argc, argv, "hlcfbvi:S:s:", options, NULL);
int n = getopt_long(argc, argv, "hlcfbvi:S:s:L:", options, NULL);
if (n < 0)
break;
switch (n)
Expand Down Expand Up @@ -239,7 +239,7 @@ int main (int argc, char* const argv [])
name += "-littlefs";
name += String(littlefs_kb > 0? littlefs_kb: -littlefs_kb, DEC);
name += "KB";
// mock_start_littlefs(name, littlefs_kb);
mock_start_littlefs(name, littlefs_kb);
}

// setup global global_ipv4_netfmt
Expand Down

0 comments on commit aecf113

Please sign in to comment.