From b9161e1f09dd99105e12a52f8d3d067570c0cefa Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: Tue, 25 Jan 2022 16:56:54 +0100 Subject: [PATCH] disable doctests; they are a never ending source of obscure rustc problems --- rust-tokei.spec | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/rust-tokei.spec b/rust-tokei.spec index d94f579..2283791 100644 --- a/rust-tokei.spec +++ b/rust-tokei.spec @@ -5,7 +5,7 @@ Name: rust-%{crate} Version: 12.0.4 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Utility that allows you to count code, quickly # Upstream license specification: MIT/Apache-2.0 @@ -160,16 +160,17 @@ which use "yaml" feature of "%{crate}" crate. %if %{with check} %check -%ifarch %{ix86} -# * work around doctest failures caused by codegen issues with LLVM 12: +# * doctest failures caused by codegen issues with LLVM 12 on i686: # https://bugzilla.redhat.com/show_bug.cgi?id=2020861 +# * doctest failures caused by rustc crashes with LLVM 13 on armv7hl: +# https://bugzilla.redhat.com/show_bug.cgi?id=2045116 %cargo_test -a -- --lib -%else -%cargo_test -a -%endif %endif %changelog +* Tue Jan 25 2022 Fabio Valentini - 12.0.4-11 +- Disable doctests. They are a never ending source of obscure rustc problems. + * Tue Jan 25 2022 Fabio Valentini - 12.0.4-10 - Work around doctest failures caused by codegen issues with LLVM 12.