rteval/SOURCES/rteval-cyclictest.py-Remove...

31 lines
1.1 KiB
Diff

From 6c89a0dcb9133792fc755d2b7370b81b5471753e Mon Sep 17 00:00:00 2001
From: John Kacur <jkacur@redhat.com>
Date: Tue, 8 May 2018 16:35:59 +0100
Subject: [PATCH 16/18] rteval: cyclictest.py: Remove -n for cyclictest options
Upstream cyclictest made clock_nanosleep the default and removed
the -n option. Passing it as an option now creates an error, so remove
that here too.
Signed-off-by: John Kacur <jkacur@redhat.com>
---
rteval/modules/measurement/cyclictest.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rteval/modules/measurement/cyclictest.py b/rteval/modules/measurement/cyclictest.py
index f6c6d1353fac..04f78d1c9612 100644
--- a/rteval/modules/measurement/cyclictest.py
+++ b/rteval/modules/measurement/cyclictest.py
@@ -259,7 +259,7 @@ class Cyclictest(rtevalModulePrototype):
self.__cmd = ['cyclictest',
self.__interval,
- '-qmun',
+ '-qmu',
'-h %d' % self.__buckets,
"-p%d" % int(self.__priority),
]
--
2.14.3