Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions config/runtime/tests/rt-tests.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
{% elif tst_cmd == 'cyclictest' %}
HISTOGRAM: {{ histogram|default('') }}
INTERVAL: {{ interval|default('1000') }}
PRIORITY: {{ priority|default('98') }}
RT_PRIORITY: {{ rt_priority|default('98') }}

@bhcopeland bhcopeland Sep 3, 2026

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

RT_PRIORITY needs to stay as PRIORITY. But the other than that this makes sense

PRIORITY: {{ rt_priority|default('98') }}

As per: https://github.com/Linaro/test-definitions/blob/master/automated/linux/cyclictest/cyclictest.sh

@sebastianas sebastianas Sep 3, 2026

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see. I did open kernelci/test-definitions#25. Was this the wrong place or should I additionally open one against the Linaro repository? Having both as RT_PRIORITY does make it look more consistent.

THREADS: {{ threads|default('2') }}
{% elif tst_cmd == 'pi-stress' %}
MLOCKALL: {{ mlockall|default('"true"') }}
{% elif tst_cmd == 'rt-migrate-test' %}
PRIORITY: {{ priority|default('90') }}
RT_PRIORITY: {{ rt_priority|default('90') }}
{% elif tst_cmd == 'signaltest' %}
PRIORITY: {{ priority|default('98') }}
RT_PRIORITY: {{ rt_priority|default('98') }}
THREADS: {{ threads|default('2') }}
{% endif %}