1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
#!/bin/bash
#
# This file is part of util-linux.
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This file is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
TS_TOPDIR="${0%/*}/../.."
TS_DESC="chrt"
. "$TS_TOPDIR"/functions.sh
ts_init "$*"
ts_check_test_command "$TS_CMD_CHRT"
ts_skip_nonroot
ts_skip_docker
ts_skip_qemu_user
function do_chrt {
$TS_CMD_CHRT $* $TS_CMD_CHRT --pid 0 | sed 's/.* policy: //; s/.* priority: //' >> $TS_OUTPUT 2>> $TS_ERRLOG
}
function skip_policy {
$TS_CMD_CHRT --max | grep $1 | grep 'priority' &> /dev/null
if [ $? == 1 ]; then
ts_skip_subtest "unsupported"
return 1
fi
return 0
}
function skip_kernel_lt {
ts_kernel_ver_lt $1 $2 $3
if [ $? == 0 ]; then
ts_skip_subtest "kernel version must be >= $1.$2.$3"
return 1
fi
return 0
}
function skip_kernel_ge {
ts_kernel_ver_lt $1 $2 $3
if [ $? == 1 ]; then
ts_skip_subtest "kernel version must be < $1.$2.$3"
return 1
fi
return 0
}
function cleanup_output {
sed -i -e 's/pid [0-9]*/<removed>/' $TS_OUTPUT
}
ts_init_subtest "fifo"
skip_policy SCHED_FIFO
if [ $? == 0 ]; then
do_chrt --fifo 1
do_chrt --fifo 99
cleanup_output
ts_finalize_subtest
fi
ts_init_subtest "batch"
skip_policy SCHED_BATCH && skip_kernel_ge 6 12 0
if [ $? == 0 ]; then
do_chrt --batch 0
cleanup_output
ts_finalize_subtest
fi
ts_init_subtest "batch-custom-slice"
skip_policy SCHED_BATCH && skip_kernel_lt 6 12 0
if [ $? == 0 ]; then
do_chrt --batch --sched-runtime 100000 0
cleanup_output
ts_finalize_subtest
fi
ts_init_subtest "other"
skip_policy SCHED_OTHER && skip_kernel_ge 6 12 0
if [ $? == 0 ]; then
do_chrt --other 0
cleanup_output
ts_finalize_subtest
fi
ts_init_subtest "other-custom-slice"
skip_policy SCHED_OTHER && skip_kernel_lt 6 12 0
if [ $? == 0 ]; then
do_chrt --other --sched-runtime 100000 0
cleanup_output
ts_finalize_subtest
fi
ts_init_subtest "rr"
skip_policy SCHED_RR
if [ $? == 0 ]; then
do_chrt --rr 1
do_chrt --rr 99
cleanup_output
ts_finalize_subtest
fi
ts_init_subtest "idle"
skip_policy SCHED_IDLE
if [ $? == 0 ]; then
do_chrt --idle 0
cleanup_output
ts_finalize_subtest
fi
ts_init_subtest "deadline"
skip_policy SCHED_DEADLINE
if [ $? == 0 ]; then
do_chrt --deadline --sched-period 130000 0
do_chrt --deadline --sched-period 130000 --sched-deadline 120000 0
do_chrt --deadline --sched-period 130000 --sched-deadline 120000 --sched-runtime 100000 0
cleanup_output
ts_finalize_subtest
fi
# failed -- let's report kernel limits
#
if [ $TS_NSUBFAILED -ne 0 ]; then
echo "Supported policies:"
$TS_CMD_CHRT --max
fi
ts_finalize
|