Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ycai
simbricks
Commits
23d6b997
Commit
23d6b997
authored
Sep 21, 2022
by
Antoine Kaufmann
Browse files
experiments: fix basicmem test to specify hex address with 0x
Oops, address was in hex but interpreted as decimal.
parent
955e96d8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
experiments/pyexps/basicmem.py
experiments/pyexps/basicmem.py
+1
-1
No files found.
experiments/pyexps/basicmem.py
View file @
23d6b997
...
@@ -32,7 +32,7 @@ class MemTest(node.AppConfig):
...
@@ -32,7 +32,7 @@ class MemTest(node.AppConfig):
def
run_cmds
(
self
,
node
):
def
run_cmds
(
self
,
node
):
return
[
return
[
f
'busybox devmem
{
self
.
addr
:
x
}
64 42'
f
'busybox devmem
0x
{
self
.
addr
:
x
}
64
0x
42'
]
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment