sys-apps/earlyoom: fix tests, give keywords
authorRick Farina <zerochaos@gentoo.org>
Fri, 10 Jan 2020 20:40:49 +0000 (15:40 -0500)
committerRick Farina <zerochaos@gentoo.org>
Fri, 10 Jan 2020 20:41:09 +0000 (15:41 -0500)
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Rick Farina <zerochaos@gentoo.org>
sys-apps/earlyoom/earlyoom-1.3.ebuild
sys-apps/earlyoom/files/earlyoom-1.3-test-fixed.patch [new file with mode: 0644]

index 2118282839fef298bc23f30e0bf49441ee9dded7..c1fa70a6791936e1ab1078e01d14572658fd1a79 100644 (file)
@@ -11,14 +11,16 @@ SRC_URI="https://github.com/rfjakob/earlyoom/archive/v$PV.tar.gz -> $P.tar.gz"
 
 LICENSE="MIT-with-advertising"
 SLOT="0"
-#KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~x86"
 IUSE="systemd docs"
 
 DEPEND="docs? ( app-text/pandoc )"
 RDEPEND=""
 
-#https://github.com/rfjakob/earlyoom/issues/156
-RESTRICT="test"
+src_prepare() {
+       eapply "${FILESDIR}/${P}-test-fixed.patch"
+       default
+}
 
 src_compile() {
        VERSION="v${PV}" emake earlyoom
diff --git a/sys-apps/earlyoom/files/earlyoom-1.3-test-fixed.patch b/sys-apps/earlyoom/files/earlyoom-1.3-test-fixed.patch
new file mode 100644 (file)
index 0000000..8c6fc3a
--- /dev/null
@@ -0,0 +1,34 @@
+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},