From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:43992) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hnPtz-0005b3-Ud for guix-patches@gnu.org; Tue, 16 Jul 2019 12:02:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hnPty-0000Pk-Tq for guix-patches@gnu.org; Tue, 16 Jul 2019 12:02:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:42187) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hnPty-0000PT-PN for guix-patches@gnu.org; Tue, 16 Jul 2019 12:02:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hnPty-0004sb-Fj for guix-patches@gnu.org; Tue, 16 Jul 2019 12:02:02 -0400 Subject: [bug#36692] test failures References: <20190716154734.22605-1-rob@vllmrt.net> In-Reply-To: <20190716154734.22605-1-rob@vllmrt.net> Resent-Message-ID: From: Robert Vollmert Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Mac OS X Mail 12.4 \(3445.104.11\)) Message-Id: <1A10CE34-C9D6-4ECD-AA58-C7681043EBEF@vllmrt.net> Date: Tue, 16 Jul 2019 18:00:51 +0200 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36692@debbugs.gnu.org I was able to run both tests from the build directory in /tmp, and they both passed fine. Also they both involve user ids, I suspect those might differ in the build container? main =3D do void $ forkIO $ forever $ getGroupEntryForID 0 void $ forkIO $ forever $ getGroupEntryForID 0 threadDelay (3*1000*1000) main =3D do root <- getUserEntryForName "root" putStrLn (ue2String root) root' <- getUserEntryForID (userID root) putStrLn (ue2String root') if homeDirectory root =3D=3D homeDirectory root' && userShell root =3D=3D userShell root' then putStrLn "OK" else putStrLn =E2=80=9CMismatch"