From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id 49E1D3858D28 for ; Mon, 8 Apr 2024 16:41:16 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 49E1D3858D28 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 49E1D3858D28 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=170.10.129.124 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1712594478; cv=none; b=MN6biBZ3sFt/FPgY98W4e3wbyqoKclIueR03PdfZ4pTHpm7pDVQEvv97ApQFkVzkFKSb/cwq0o1vwEOVGaR1/kLKUY6iLSFBG4eYel2l7exO79xwHLsyZ7WyFYvJuYbVVp7Fs0i8weSt83qgJbBOAjYQvLe+ZjndKTK1ijdZhVI= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1712594478; c=relaxed/simple; bh=BLaGUXY3ssUcmXm3QgmDojgS1UpY1/corMKWKVJOqGE=; h=DKIM-Signature:From:To:Subject:Date:Message-ID:MIME-Version; b=e2rHt1rzG4hqeAA4HvxEmmeR4nu+pGak/NuGCJSkFHh9821PQpX9f1/hXxwZI+PbGGzz9Lhjp/qo9CWZlRD7AB/3WruVcOaPqJ6V3ztHBhU4RoNxCvyPstR9lNWyTEmhkuNZ813TMT6S5rVk53RdxaNM1eM4+7J2/Jb1JzbXCI0= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1712594468; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=0JbJZ5LGZpJUyheVQWThiaotbYPzKDi9pN5deknuyV8=; b=gZlT451Fi7RP53XtoC63A4wCCU23RTF27/AWOlycQ7vExGlrsvgIf289ImP6Ckd0NgF8X8 3I2yFhGyNPpsunm8hwXIDFs5A8XqmyBWBrFz7RMR0ZjjcAt9r10mLECeVZDwpvAgBgxPCK 8U3CDcQlvRX4nq3Qm9Vx+yXJDzTPJjA= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-441-b-yAEBx3PfqQTYpeAV0wQQ-1; Mon, 08 Apr 2024 12:40:27 -0400 X-MC-Unique: b-yAEBx3PfqQTYpeAV0wQQ-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id A588E10499A1 for ; Mon, 8 Apr 2024 16:40:21 +0000 (UTC) Received: from oldenburg.str.redhat.com (unknown [10.39.192.59]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 4AEC8492BD4 for ; Mon, 8 Apr 2024 16:40:21 +0000 (UTC) From: Florian Weimer To: libc-alpha@sourceware.org Subject: Re: [PATCH] elf: Add ld.so test with non-existing program name In-Reply-To: <87le5nvosq.fsf@oldenburg.str.redhat.com> (Florian Weimer's message of "Mon, 08 Apr 2024 17:48:05 +0200") References: <87le5nvosq.fsf@oldenburg.str.redhat.com> Date: Mon, 08 Apr 2024 18:40:16 +0200 Message-ID: <87edbfvmdr.fsf@oldenburg.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.10 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-Spam-Status: No, score=-5.3 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H4,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: * Florian Weimer: > None of the existing tests seem to cover the case where > _dl_signal_error is called without an active error handler. > The new elf/tst-rtld-does-not-exist test triggers such a > _dl_signal_error call from _dl_map_object. > > --- > elf/Makefile | 7 +++++++ > elf/tst-rtld-does-not-exist.sh | 38 ++++++++++++++++++++++++++++++++++++++ > 2 files changed, 45 insertions(+) Sorry, forgot to delete the temporary file. Will send a new version. Florian