Commit 23d6b997 authored by Antoine Kaufmann's avatar 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
......@@ -32,7 +32,7 @@ class MemTest(node.AppConfig):
def run_cmds(self, node):
return [
f'busybox devmem {self.addr:x} 64 42'
f'busybox devmem 0x{self.addr:x} 64 0x42'
]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment