From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.220.28]) by sourceware.org (Postfix) with ESMTPS id 7F86E3858D35 for ; Fri, 14 Jan 2022 14:12:25 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 7F86E3858D35 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.cz Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 3DFF5219AA; Fri, 14 Jan 2022 14:12:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1642169544; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=/Kt/Dr53aI2him4oVBqcQdGBpNTw/ILcV60GDQ0uGAk=; b=12qeUz35Kck2soF8H0WxvyRhgB16AvPuRnE8lR/EXro/rO+6QDIXazMQtgl3HJ0bhM9S1U u3zTpKaRO0LOAf64fTl4FMuE7urR4r+qd7cj0NLtSi2RvnMs5dmhUQ7hlS3GhxutLFi7cY z0gdUjL5ZFz7yZ1idfkD4wSL9fFgFDo= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1642169544; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=/Kt/Dr53aI2him4oVBqcQdGBpNTw/ILcV60GDQ0uGAk=; b=TRZKQ38dNWUZmkopDHce3AyaBnBEm9DflrwLNdRmLop9980mZWPiC47phLb3jPse8LoWf1 8P1LIPoLrdUjy2Aw== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 28F0913B7F; Fri, 14 Jan 2022 14:12:24 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id NMzqCMiE4WGXKAAAMHmgww (envelope-from ); Fri, 14 Jan 2022 14:12:24 +0000 Message-ID: Date: Fri, 14 Jan 2022 15:12:23 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Content-Language: en-US To: GCC Development , Joel Brobecker From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Subject: git hooks: too strict check Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-5.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2022 14:12:26 -0000 Hello. I'm working on a testsuite clean-up where some of the files are wrongly named. More precisely, so files have .cc extension and should use .C. However there's existing C test-case and it leads to: marxin@marxinbox:~/Programming/gcc/gcc/testsuite> find . -name test-asm.* ./jit.dg/test-asm.C ./jit.dg/test-asm.c test-kunlun me/rename-testsuite-files Enumerating objects: 804, done. Counting objects: 100% (804/804), done. Delta compression using up to 16 threads Compressing objects: 100% (242/242), done. Writing objects: 100% (564/564), 142.13 KiB | 7.48 MiB/s, done. Total 564 (delta 424), reused 417 (delta 295), pack-reused 0 remote: Resolving deltas: 100% (424/424), completed with 222 local objects. remote: *** The following filename collisions have been detected. remote: *** These collisions happen when the name of two or more files remote: *** differ in casing only (Eg: "hello.txt" and "Hello.txt"). remote: *** Please re-do your commit, chosing names that do not collide. remote: *** remote: *** Commit: 7297e1de9bed96821d2bcfd034bad604ce035afb remote: *** Subject: Rename tests in jit sub-folder. remote: *** remote: *** The matching files are: remote: *** remote: *** gcc/testsuite/jit.dg/test-quadratic.C remote: *** gcc/testsuite/jit.dg/test-quadratic.c remote: *** remote: *** gcc/testsuite/jit.dg/test-switch.C remote: *** gcc/testsuite/jit.dg/test-switch.c remote: *** remote: *** gcc/testsuite/jit.dg/test-asm.C remote: *** gcc/testsuite/jit.dg/test-asm.c remote: *** remote: *** gcc/testsuite/jit.dg/test-alignment.C remote: *** gcc/testsuite/jit.dg/test-alignment.c Can we please do something about it? Thanks, Martin