Felix Abecassis
Felix Abecassis
Feel free to tell me that you don't want to support this use case if it's not useful for your sites. We have a unit test that executes on each...
I might be missing something obvious here, but the [handlers_perflog](https://reframe-hpc.readthedocs.io/en/stable/config_reference.html#logging-.handlers_perflog-.format) reference does not seem to be documenting the performance-related arguments used in [Configuring ReFrame for Your Site](https://reframe-hpc.readthedocs.io/en/stable/configure.html#configuring-reframe-for-your-site), e.g.: - `check_perf_value`...
**Please acknowledge the following before creating a ticket** - [x] I have read the GitHub issues section of [REPORTING-BUGS](../blob/master/REPORTING-BUGS). **Description of the bug:** The [`invalidate`](https://fio.readthedocs.io/en/latest/fio_doc.html#cmdoption-arg-invalidate) flag is documented as follow:...
The specification doesn't specify anything if a syscall can't be resolved (or if it's a "pseudo" syscall). runc silently drop those entries: https://github.com/opencontainers/runc/blob/ecd55a4135e0a26de884ce436442914f945b1e76/libcontainer/seccomp/seccomp_linux.go#L168-L173 This seems like a fairly strong assumption...
`valueTwo` is listed as [`OPTIONAL`](https://github.com/opencontainers/runtime-spec/blob/master/config-linux.md#seccomp). And in the Go it's listed as [`omitempty`](https://github.com/opencontainers/runtime-spec/blob/master/specs-go/config.go#L603). As a result, [docker's seccomp policy](https://github.com/moby/moby/blob/master/profiles/seccomp/default.json#L578-L590) will be encoded as this: ```json { "names": [ "clone" ],...
Mostly a nice to have, but I got confused for a while on why our `mount` hook ("a hook to be run in the container's namespace after mounting has been...
Could probably be bundled in #2475 Let's assume I want to bind-mount `/run` as `shared` inside my container: ``` $ findmnt /run -o TARGET,OPT-FIELDS,PROPAGATION TARGET OPT-FIELDS PROPAGATION /run shared:5 shared...
_Initially reported: https://github.com/docker/docker/issues/24865, but I realized it actually belongs here. Feel free to close the other one if you want. Content of the original issue copied below._ Related: #1030 Currently,...
This is a follow-up of https://github.com/reframe-hpc/reframe/issues/2577 and the comment https://github.com/reframe-hpc/reframe/pull/2578#issuecomment-1231358999 The request is to have a way to control the filename of the `filelog` output file, in order to have...
Running mpifileutils 0.10 on Ubuntu 5.3.0-24-generic Here is a simple ext4 -> ext4 single file copy with O_DIRECT: ``` $ mpirun -np 1 dcp --synchronous -p -v /raid/datasets/train-val-recordio-passthrough/val.rec /raid/scratch/val.rec [2020-06-16T17:06:57]...