summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorRonny Chevalier <chevalier.ronny@gmail.com>2015-10-30 17:46:32 +0100
committerRonny Chevalier <chevalier.ronny@gmail.com>2015-10-31 15:07:19 +0100
commita622675862ca59cae4662bff21a0c795e0108c65 (patch)
treedd078d151cc14d24de35d9bd6af9e57068238b66 /src/test
parentc388dfea5a9de5771283fbf0f5ebc5a45c895b79 (diff)
test-execute: add tests for IOSchedulingClass
Diffstat (limited to 'src/test')
-rw-r--r--src/test/test-execute.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/test-execute.c b/src/test/test-execute.c
index d708878a4d..158626f715 100644
--- a/src/test/test-execute.c
+++ b/src/test/test-execute.c
@@ -216,6 +216,13 @@ static void test_exec_oomscoreadjust(Manager *m) {
test(m, "exec-oomscoreadjust-negative.service", 0, CLD_EXITED);
}
+static void test_exec_ioschedulingclass(Manager *m) {
+ test(m, "exec-ioschedulingclass-none.service", 0, CLD_EXITED);
+ test(m, "exec-ioschedulingclass-idle.service", 0, CLD_EXITED);
+ test(m, "exec-ioschedulingclass-realtime.service", 0, CLD_EXITED);
+ test(m, "exec-ioschedulingclass-best-effort.service", 0, CLD_EXITED);
+}
+
int main(int argc, char *argv[]) {
test_function_t tests[] = {
test_exec_workingdirectory,
@@ -234,6 +241,7 @@ int main(int argc, char *argv[]) {
test_exec_runtimedirectory,
test_exec_capabilityboundingset,
test_exec_oomscoreadjust,
+ test_exec_ioschedulingclass,
NULL,
};
test_function_t *test = NULL;