summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRonny Chevalier <chevalier.ronny@gmail.com>2015-10-30 17:09:22 +0100
committerRonny Chevalier <chevalier.ronny@gmail.com>2015-10-31 15:07:19 +0100
commitc388dfea5a9de5771283fbf0f5ebc5a45c895b79 (patch)
treeb7e78dacb02a8a7b57148dfca37004a3dab0bd96 /test
parent03bd70dd01c61c7a4b1e17d4b7235bab68c1ebd1 (diff)
test-execute: add tests for OOMScoreAdjust
Diffstat (limited to 'test')
-rw-r--r--test/exec-oomscoreadjust-negative.service7
-rw-r--r--test/exec-oomscoreadjust-positive.service7
2 files changed, 14 insertions, 0 deletions
diff --git a/test/exec-oomscoreadjust-negative.service b/test/exec-oomscoreadjust-negative.service
new file mode 100644
index 0000000000..63ab501c63
--- /dev/null
+++ b/test/exec-oomscoreadjust-negative.service
@@ -0,0 +1,7 @@
+[Unit]
+Description=Test for OOMScoreAdjust
+
+[Service]
+ExecStart=/bin/bash -c 'c=$(cat /proc/self/oom_score_adj); echo $c; exit $(test $c -eq -100)'
+OOMScoreAdjust=-100
+Type=oneshot
diff --git a/test/exec-oomscoreadjust-positive.service b/test/exec-oomscoreadjust-positive.service
new file mode 100644
index 0000000000..e47a4f1392
--- /dev/null
+++ b/test/exec-oomscoreadjust-positive.service
@@ -0,0 +1,7 @@
+[Unit]
+Description=Test for OOMScoreAdjust
+
+[Service]
+ExecStart=/bin/bash -c 'c=$(cat /proc/self/oom_score_adj); echo $c; exit $(test $c -eq 100)'
+OOMScoreAdjust=100
+Type=oneshot