From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qv1-xf35.google.com (mail-qv1-xf35.google.com [IPv6:2607:f8b0:4864:20::f35]) by sourceware.org (Postfix) with ESMTPS id C42583857C48 for ; Wed, 28 Apr 2021 21:50:44 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org C42583857C48 Received: by mail-qv1-xf35.google.com with SMTP id j3so31582568qvs.1 for ; Wed, 28 Apr 2021 14:50:44 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:cc:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=jElvPv0SoekIfDsjQkG4ZhX3odS8RWnsMB1nx5VsiKg=; b=Ry9YFpgVp7F2XIYUFl2EEeIlAEHBKNc23uSMW/DV/9mKQzF/QquKIPzMntnq9xK9K3 eeP2vdhxFBHVoS6b3l12tdxJ5fp9F4Mlu7RI4/hDZKmOUduZAS2pvtCySAr4FjZbm9Dc 1pJZhuDXBPvwAnwDIrFeVxH2ElvdmmCk9TtxsSREPVH05osWTaY7/rx8vYDyFJDnREKI XHVqgZMkrjX0L3nYve+C+pjFM5FFba61Igbjgs6w+gsMyJtD/wkChg3xqTqOgoYonrkC kH3ymx9byDTUW8wiKppOCeKOjbpZduA4j3lvQusxUVHhJ+d8duBk4lKPddKBU+/Qurbi h+CA== X-Gm-Message-State: AOAM532sTt8cie2BU5zWFCsEjQiKA5Bam9mCu81C+ZoxeriRYcJZrhVz 11enDuxIpIT6IGi6CQLgcXDy1RRokys= X-Google-Smtp-Source: ABdhPJw0g00YLnc7l/s6TPu9VuLTixvADDr65V+cOXqsBtgEjnMmnWhYoFOSBzRSqMt7Td9W2+WnHw== X-Received: by 2002:a0c:ee81:: with SMTP id u1mr30828648qvr.14.1619646643651; Wed, 28 Apr 2021 14:50:43 -0700 (PDT) Received: from [192.168.0.41] (71-218-14-121.hlrn.qwest.net. [71.218.14.121]) by smtp.gmail.com with ESMTPSA id m124sm793535qkc.70.2021.04.28.14.50.43 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Wed, 28 Apr 2021 14:50:43 -0700 (PDT) Subject: Re: tests failing on x86_64-linux (due to test-container?) To: DJ Delorie Cc: libc-alpha@sourceware.org References: From: Martin Sebor Message-ID: <0329cb88-4e48-0186-98d6-8a70a77421ed@gmail.com> Date: Wed, 28 Apr 2021 15:50:42 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.2.2 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Apr 2021 21:50:46 -0000 On 4/28/21 2:37 PM, DJ Delorie wrote: > > The test-container binary should print its own diagnostics, although > they may show up in the build logs instead of the test logs (stderr vs > stdout). > > You can "make test t=nss/tst-nss-test3" to re-run one test and see the > output. Aha! A new trick! Thanks! I've been using nice make -C /build/glibc check subdirs=nss tests=tst-nss-test3 Either way, the error is the same (I thought I had mentioned it before but maybe not): /build/glibc/nss/tst-nss-test3: error while loading shared libraries: /build/glibc/nss/tst-nss-test3: cannot open shared object file: No such file or directory Not sure what .so it's looking for though. > > (also, "make help" tells you the above) Nice. I didn't know about this one either. Thank you again! Martin