Breno! On Thu, 26 Mar 2026 at 10:33, Breno Leitao <[email protected]> wrote: > > On Wed, Mar 25, 2026 at 03:50:16PM +0100, Björn Töpel wrote: > > > +def _dfs_write_u32(cfg, path, val): > > + with open(os.path.join(_nsim_dfs_path(cfg), path), "w", > > + encoding="utf-8") as f: > > + f.write(str(val)) > > This function doesn't seem to be called, right?
Indeed -- another leftover! Thank you! > > +def main() -> None: > > + """Run netdevsim loopback tests.""" > > + with NetDrvEnv(__file__) as cfg: > > + cfg.ethnl = EthtoolFamily() > > Given some functions above assume this is nsim, should you call > cfg.require_nsim() ? Yeah, or directly from NetDrvEnv() statement above! Good point! Will fix! Björn

