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.133.124]) by sourceware.org (Postfix) with ESMTPS id 4CA993858C36 for ; Fri, 15 Sep 2023 23:05:44 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 4CA993858C36 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1694819144; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=PV4xCTzvhDKqVIsgzNCvMijpuAvZdSo/HUTWzGxxZvM=; b=VNEv3wAJS9GhOFeEwFS8mI1xmJL4QYzFFV+DXfulcaeCxVst6ZU4v7A+Tqg+yurUuUk2DO BkS4T8CEsUCjhMZAjCIVaGQL8e0A4JwIw8K15mGmcGdOquuR3gTHw30Vf+tDSJ+GNEbK+M pOuXGxL8ToXKYokGVMJ+dZ7j1HR6hjI= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-342-yA6YSASQPrapsxe7JJklpg-1; Fri, 15 Sep 2023 19:05:40 -0400 X-MC-Unique: yA6YSASQPrapsxe7JJklpg-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 8D4B485A5BA; Fri, 15 Sep 2023 23:05:40 +0000 (UTC) Received: from localhost (unknown [10.42.28.190]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5381F1054FC6; Fri, 15 Sep 2023 23:05:40 +0000 (UTC) From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: [committed] libstdc++: Add log line to testsuite output Date: Sat, 16 Sep 2023 00:04:27 +0100 Message-ID: <20230915230539.2328463-1-jwakely@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.3 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.8 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=unavailable autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Tested aarch64-linux. Pushed to trunk. This makes it easier to debug the problem when a test isn't running because there's a testsuite_files that doesn't include it. -- >8 -- Write a line to the log when using a testsuite_files file. libstdc++-v3/ChangeLog: * testsuite/libstdc++-dg/conformance.exp: Add log line when using testsuite_files. --- libstdc++-v3/testsuite/libstdc++-dg/conformance.exp | 1 + 1 file changed, 1 insertion(+) diff --git a/libstdc++-v3/testsuite/libstdc++-dg/conformance.exp b/libstdc++-v3/testsuite/libstdc++-dg/conformance.exp index 76679739823..96dcc1f8cff 100644 --- a/libstdc++-v3/testsuite/libstdc++-dg/conformance.exp +++ b/libstdc++-v3/testsuite/libstdc++-dg/conformance.exp @@ -44,6 +44,7 @@ if {[info exists blddir]} { } if {[info exists tests_file] && [file exists $tests_file]} { set f [open $tests_file] + verbose -log "reading test files from $tests_file" 1 while { ! [eof $f] } { set t [gets $f] if { [string length "$t"] != 0 } { -- 2.41.0