Skip to content
Snippets Groups Projects
Verified Commit 7dc1a8f0 authored by dos's avatar dos
Browse files

sim: Add statvfs and mkdir stubs

parent ce381c13
No related branches found
No related tags found
1 merge request!600Simulator improvements
......@@ -107,6 +107,8 @@ def _mkmock(fun):
os.listdir = _mkmock(os.listdir)
os.stat = _mkmock(os.stat)
os.statvfs = _mkmock(os.statvfs)
os.mkdir = _mkmock(os.mkdir)
builtins.open = _mkmock(builtins.open)
orig_stat = os.stat
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment