Skip to content

host emulation: littlefs was not fully enabled #6342

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 25, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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