diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-08-24 21:27:25 +0200 |
---|---|---|
committer | Rick Farina <zerochaos@gentoo.org> | 2023-08-24 21:01:00 -0400 |
commit | 7ad11779db2be7699c4e65edb477a88dbc6eb27d (patch) | |
tree | a86021eaca45dcd62ac2ec653675841f15390933 /sys-apps/earlyoom | |
parent | media-radio/chirp: add 20230823 (diff) | |
download | gentoo-7ad11779db2be7699c4e65edb477a88dbc6eb27d.tar.gz gentoo-7ad11779db2be7699c4e65edb477a88dbc6eb27d.tar.bz2 gentoo-7ad11779db2be7699c4e65edb477a88dbc6eb27d.zip |
sys-apps/earlyoom: remove unused patch/file
Closes: https://github.com/gentoo/gentoo/pull/32438
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Rick Farina <zerochaos@gentoo.org>
Diffstat (limited to 'sys-apps/earlyoom')
-rw-r--r-- | sys-apps/earlyoom/files/earlyoom | 6 | ||||
-rw-r--r-- | sys-apps/earlyoom/files/earlyoom-1.3-test-fixed.patch | 34 |
2 files changed, 0 insertions, 40 deletions
diff --git a/sys-apps/earlyoom/files/earlyoom b/sys-apps/earlyoom/files/earlyoom deleted file mode 100644 index 374c0d1af231..000000000000 --- a/sys-apps/earlyoom/files/earlyoom +++ /dev/null @@ -1,6 +0,0 @@ -#!/sbin/openrc-run -name=earlyoom -command=/usr/bin/earlyoom -command_args=-k -command_background=1 -pidfile=/run/earlyoom.pid diff --git a/sys-apps/earlyoom/files/earlyoom-1.3-test-fixed.patch b/sys-apps/earlyoom/files/earlyoom-1.3-test-fixed.patch deleted file mode 100644 index 8c6fc3ab6df5..000000000000 --- a/sys-apps/earlyoom/files/earlyoom-1.3-test-fixed.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 3648b351e88331f3f2e46af4ae0ddd19e27bc7c2 Mon Sep 17 00:00:00 2001 -From: Jakob Unterwurzacher <jakobunt@gmail.com> -Date: Mon, 8 Jul 2019 21:07:04 +0200 -Subject: [PATCH] tests: fix TestCli failure when all processes have badness 0 - -On a machine with a lot of RAM and no big processes running, -all processes may have badness 0, and we will get - - ^ new victim (higher vm_rss) - -in the debug output, but not - - ^ new victim (higher badness) - -. This is not a failure. - -Fixes https://github.com/rfjakob/earlyoom/issues/137 ---- - tests/cli_test.go | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/tests/cli_test.go b/tests/cli_test.go -index 7085290..ef4abee 100644 ---- a/tests/cli_test.go -+++ b/tests/cli_test.go -@@ -72,7 +72,7 @@ func TestCli(t *testing.T) { - {args: nil, code: -1, stderrContains: startupMsg, stdoutContains: memReport}, - {args: []string{"-p"}, code: -1, stdoutContains: memReport}, - {args: []string{"-v"}, code: 0, stderrContains: "earlyoom v", stdoutEmpty: true}, -- {args: []string{"-d"}, code: -1, stdoutContains: "^ new victim (higher badness)"}, -+ {args: []string{"-d"}, code: -1, stdoutContains: "^ new victim"}, - {args: []string{"-m", "1"}, code: -1, stderrContains: " 1 %", stdoutContains: memReport}, - {args: []string{"-m", "0"}, code: 15, stderrContains: "fatal", stdoutEmpty: true}, - {args: []string{"-m", "-10"}, code: 15, stderrContains: "fatal", stdoutEmpty: true}, |