From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS3215 2.6.0.0/16 X-Spam-Status: No, score=-3.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from out1.vger.email (out1.vger.email [IPv6:2620:137:e000::1:20]) by dcvr.yhbt.net (Postfix) with ESMTP id DFEB81F4D7 for ; Wed, 15 Jun 2022 10:12:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239593AbiFOKKu convert rfc822-to-8bit (ORCPT ); Wed, 15 Jun 2022 06:10:50 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54780 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237034AbiFOKKs (ORCPT ); Wed, 15 Jun 2022 06:10:48 -0400 Received: from elephants.elehost.com (elephants.elehost.com [216.66.27.132]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1C46F39816 for ; Wed, 15 Jun 2022 03:10:47 -0700 (PDT) Received: from Mazikeen ([91.110.128.244]) (authenticated bits=0) by elephants.elehost.com (8.16.1/8.16.1) with ESMTPSA id 25FAAgD3006441 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 15 Jun 2022 06:10:43 -0400 (EDT) (envelope-from rsbecker@nexbridge.com) Reply-To: From: To: "'Junio C Hamano'" , Subject: Test Failure t5516.113 RE: [ANNOUNCE] Git v2.37.0-rc0 Date: Wed, 15 Jun 2022 06:10:36 -0400 Organization: Nexbridge Inc. Message-ID: <01e801d880a0$2c5e4d50$851ae7f0$@nexbridge.com> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8BIT X-Mailer: Microsoft Outlook 16.0 Thread-Index: AdiAn9uDBZBC+JdZSy6xI1CoQt0FNw== Content-Language: en-ca Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On June 13, 2022 9:46 PM, Junio C Hamano wrote: >An early preview release Git v2.37.0-rc0 is now available for testing at the usual >places. It is comprised of 339 non-merge commits since v2.36.0, contributed by 59 >people, 18 of which are new faces [*]. There are a few topics that we may want to >merge before the final release, which will be in -rc1 that is planned to be tagged at >around the end of the week. This one keeps showing up occasionally. I am not sure why, but I am not certain bash likes ! grep. This only happens on our NonStop x86 build, which is a more recent platform than the ia64, where the construct succeeds. Have we not moved away from that? not ok 113 - fetch warns or fails when using username:password # # message="URL 'https://username:@localhost/' uses plaintext credentials" && # test_must_fail git -c fetch.credentialsInUrl=allow fetch https://username:password@localhost 2>err && # ! grep "$message" err && # # test_must_fail git -c fetch.credentialsInUrl=warn fetch https://username:password@localhost 2>err && # grep "warning: $message" err >warnings && # test_line_count = 3 warnings && # # test_must_fail git -c fetch.credentialsInUrl=die fetch https://username:password@localhost 2>err && # grep "fatal: $message" err >warnings && # test_line_count = 1 warnings && # # test_must_fail git -c fetch.credentialsInUrl=die fetch https://username:@localhost 2>err && # grep "fatal: $message" err >warnings && # test_line_count = 1 warnings # Thanks, Randall