Re: [PATCH 00/20] tests/9p: introduce declarative function calls

2022-10-18 Thread Christian Schoenebeck
On Tuesday, October 4, 2022 10:56:44 PM CEST Christian Schoenebeck wrote: > This series converts relevant 9p (test) client functions to use named > function arguments. For instance > > do_walk_expect_error(v9p, "non-existent", ENOENT); > > becomes > > twalk({ > .client = v9p, .pa

Re: [PATCH 00/20] tests/9p: introduce declarative function calls

2022-10-13 Thread Christian Schoenebeck
On Mittwoch, 12. Oktober 2022 15:58:06 CEST Greg Kurz wrote: > On Wed, 12 Oct 2022 12:00:40 +0200 > Christian Schoenebeck wrote: > > > On Dienstag, 4. Oktober 2022 22:56:44 CEST Christian Schoenebeck wrote: > > > This series converts relevant 9p (test) client functions to use named > > > function

Re: [PATCH 00/20] tests/9p: introduce declarative function calls

2022-10-12 Thread Greg Kurz
On Wed, 12 Oct 2022 12:00:40 +0200 Christian Schoenebeck wrote: > On Dienstag, 4. Oktober 2022 22:56:44 CEST Christian Schoenebeck wrote: > > This series converts relevant 9p (test) client functions to use named > > function arguments. For instance > > > > do_walk_expect_error(v9p, "non-exis

Re: [PATCH 00/20] tests/9p: introduce declarative function calls

2022-10-12 Thread Christian Schoenebeck
On Dienstag, 4. Oktober 2022 22:56:44 CEST Christian Schoenebeck wrote: > This series converts relevant 9p (test) client functions to use named > function arguments. For instance > > do_walk_expect_error(v9p, "non-existent", ENOENT); > > becomes > > twalk({ > .client = v9p, .path

[PATCH 00/20] tests/9p: introduce declarative function calls

2022-10-04 Thread Christian Schoenebeck
This series converts relevant 9p (test) client functions to use named function arguments. For instance do_walk_expect_error(v9p, "non-existent", ENOENT); becomes twalk({ .client = v9p, .path = "non-existent", .expectErr = ENOENT }); The intention is to make the actual 9p tes