diff --git a/README.org b/README.org index c47ab7d..f11e67c 100644 --- a/README.org +++ b/README.org @@ -92,7 +92,7 @@ module: labn-munet-config | | +--rw name string | | +--rw value? string | +--rw gdb-cmd? string - | +--rw gdb-run-cmd* string + | +--rw gdb-run-cmds* string | +--rw init? union | +--rw mounts* [destination] | | +--rw destination string @@ -160,7 +160,7 @@ module: labn-munet-config | | +--rw name string | | +--rw value? string | +--rw gdb-cmd? string - | +--rw gdb-run-cmd* string + | +--rw gdb-run-cmds* string | +--rw init? union | +--rw mounts* [destination] | | +--rw destination string diff --git a/munet/native.py b/munet/native.py index 2792b0b..4fbbb85 100644 --- a/munet/native.py +++ b/munet/native.py @@ -461,7 +461,7 @@ def pytest_hook_open_shell(self): if bp: gdbcmd += f" '-ex=b {bp}'" - cmds = self.config.get("gdb-run-cmd", []) + cmds = self.config.get("gdb-run-cmds", []) for cmd in cmds: gdbcmd += f" '-ex={cmd}'"