From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ej1-x635.google.com (mail-ej1-x635.google.com [IPv6:2a00:1450:4864:20::635]) by sourceware.org (Postfix) with ESMTPS id 03385386C3C9 for ; Mon, 11 Apr 2022 10:35:35 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 03385386C3C9 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=embecosm.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=embecosm.com Received: by mail-ej1-x635.google.com with SMTP id t11so2923892eju.13 for ; Mon, 11 Apr 2022 03:35:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=embecosm.com; s=google; h=mime-version:from:date:message-id:subject:to; bh=ftoKLz6Ij02m6+PAeDFqzYB3HS+axsWP6J5wVvBTO+Y=; b=dAoSf3WWH63uGQsbPXfFeEyZLBuZV6q7syZSLMvLIg/FQ2DmwEJEWEiP95ieFCSPGJ CL1LaoSTr8YF+v86g0W1m4OtWNMmjvveKsR6HGXjoCqUaa980FB8QBmb9LSaOFULvyXb qq+M5etU2m/3wt/KaueAkhdNfLBvaHbyFHYSpIXKd+0szYE0sA8uafhw0+KGK6FvfZ8g ifrOgb2zK9A87qa/z7KUygb+zhwyrr4cD6Xr4ZIqa1a5hhmtJ0aW8e5SYm1Aoa/KQ+OW UZaOPSbKOtFVJoMsc230pwbFPEWq6yNnRiz+PrsiuB1FLFnSWZuAbdcPiErzYLfKiwrW wntA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=ftoKLz6Ij02m6+PAeDFqzYB3HS+axsWP6J5wVvBTO+Y=; b=XF2dFzqFrUblf/94YSi+Gle3c45XW9wF6TNonFU5/WIVbu9UwLQnX72E7AJShr+DjO zEhnot06RJh4L+RqxPkxHzszQCwzVkXZhpwt3WSzbRh+cDWkKoJ8Cl0t5/K3Gufhc8JO 2h3xgn6ZYB7sA3PyJC1MLTODD9rbGYkOxKTSRd0b1zi3GUf4Tw5juO/sxbrJiBxmdsur L/EeO6OxEyHxeQTaeIBuho6AKW+eucp+jKrRFuHMuWhCrfSEXOZUDmMcSmvcH3BuNWMD vFtDE9joW3bWStCOecRUqDXAWvU6i65u44l9dAHusklYPR56RXlmB/yzsyalJGVpOUyp fLUA== X-Gm-Message-State: AOAM531IXjj/pG200TJZzsdYRlqYaAxNI0AXMX/UuiXzLOIQbQPQTQcq cZN+lNCn5sQTmHlpE0RojhAuT5I9Pzu7IBufhPldcCf4NhoAiA== X-Google-Smtp-Source: ABdhPJzjQfqx66SD+Hw7yNGVIfZu3OHwZHz09OjhEmjWrJhNdzI+f37CnbuY9kjoEakSHXWp5r2ADYcxuqhMXi3yCRw= X-Received: by 2002:a17:907:6095:b0:6e7:cc3f:c33d with SMTP id ht21-20020a170907609500b006e7cc3fc33dmr22882549ejc.570.1649673333392; Mon, 11 Apr 2022 03:35:33 -0700 (PDT) MIME-Version: 1.0 From: Philip Herron Date: Mon, 11 Apr 2022 11:35:22 +0100 Message-ID: Subject: Bad testcase To: gcc-rust@gcc.gnu.org Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-1.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE 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-rust@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: gcc-rust mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Apr 2022 10:35:36 -0000 Hi everyone, We merged a new builtin macro recently and during the code review we missed a case where the code produces an infinite loop and so we raised: https://github.com/Rust-GCC/gccrs/issues/1102 The GitHub CI did not seem to catch this issue, I am assuming dejagnu timeout the test case and our CI doesn't pick this up as a failure and so I have pushed a patch directly to master to disable the offending test case. I am raising this here just for transparency for why I pushed to master and I hope the build farm is ok it might be worth cancelling any existing builds and letting them pick up the next merge's to master. For reference I pushed this patch to silence the issue: 68458036c81d141a3899ac4e6ec6ddf0fdfde174 Hope everyone is having a great start of the week. --Phil