Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
a0c72968
Commit
a0c72968
authored
Jan 27, 2017
by
Damien George
Browse files
Options
Downloads
Patches
Plain Diff
tests/extmod/vfs_fat_ramdisk: Make it work on pyboard.
parent
bfa948c0
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/extmod/vfs_fat_ramdisk.py
+1
-1
1 addition, 1 deletion
tests/extmod/vfs_fat_ramdisk.py
tests/extmod/vfs_fat_ramdisk.py.exp
+1
-1
1 addition, 1 deletion
tests/extmod/vfs_fat_ramdisk.py.exp
with
2 additions
and
2 deletions
tests/extmod/vfs_fat_ramdisk.py
+
1
−
1
View file @
a0c72968
...
...
@@ -63,7 +63,7 @@ with vfs.open("foo_file.txt", "w") as f:
print
(
vfs
.
listdir
())
print
(
"
stat root:
"
,
vfs
.
stat
(
"
/
"
))
print
(
"
stat file:
"
,
vfs
.
stat
(
"
foo_file.txt
"
)
)
print
(
"
stat file:
"
,
vfs
.
stat
(
"
foo_file.txt
"
)
[:
-
3
])
# timestamps differ across runs
print
(
b
"
FOO_FILETXT
"
in
bdev
.
data
)
print
(
b
"
hello!
"
in
bdev
.
data
)
...
...
This diff is collapsed.
Click to expand it.
tests/extmod/vfs_fat_ramdisk.py.exp
+
1
−
1
View file @
a0c72968
...
...
@@ -5,7 +5,7 @@ getcwd: /
True
['foo_file.txt']
stat root: (16384, 0, 0, 0, 0, 0, 0, 0, 0, 0)
stat file: (32768, 0, 0, 0, 0, 0, 6
, -631238400, -631238400, -631238400
)
stat file: (32768, 0, 0, 0, 0, 0, 6)
True
True
getcwd: /foo_dir
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment