From 3291487254ee02e09f32a866b5e82d65daa77d4e Mon Sep 17 00:00:00 2001 From: Sergio Prado Date: Fri, 18 Dec 2020 18:31:11 +0000 Subject: [PATCH] README.md: fix command to run rt-tests container /dev/cpu_dma_latency major number may vary between machines. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df67dfd..4b54918 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ RT stress tests started successfully! Run the following command to execute the `rt-tests` container and start measuring the latency: ``` -$ docker run --rm -it --name rt-tests --cap-add=sys_nice --cap-add=ipc_lock --cap-add=sys_rawio --ulimit rtprio=99 --device-cgroup-rule='c 10:62 rmw' -v /dev:/dev -v /tmp:/tmp torizon/rt-tests:$CT_TAG_RT_TESTS +$ docker run --rm -it --name rt-tests --cap-add=sys_nice --cap-add=ipc_lock --cap-add=sys_rawio --ulimit rtprio=99 --device-cgroup-rule='c 10:* rmw' -v /dev:/dev -v /tmp:/tmp torizon/rt-tests:$CT_TAG_RT_TESTS ``` The tests will run for at most 12 hours, but can be interrupted at any time by pressing CTRL-C.