<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From b5281e50983e3118e22711494c4afb38da03b9da Mon Sep 17 00:00:00 2001
From: Slaven Rezic &lt;slaven@rezic.de&gt;
Date: Sat, 14 Dec 2019 13:12:23 +0100
Subject: [PATCH] workaround for https://github.com/toddr/IPC-Run/issues/130

---
 t/pty.t | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/t/pty.t b/t/pty.t
index fda2bc2..2c9dfd6 100644
--- a/t/pty.t
+++ b/t/pty.t
@@ -112,6 +112,11 @@ SKIP: {
     if ($platform_skip) {
         skip( $platform_skip, 9 );
     }
+
+    # May force opening /var/lib/sss/mc/group on some systems (see
+    # https://github.com/toddr/IPC-Run/issues/130)
+    {my $pty = IO::Pty-&gt;new}
+
     $out    = 'REPLACE ME';
     $?      = 99;
     $fd_map = _map_fds;
-- 
2.1.4

</pre></body></html>