Fix build on rv64

This commit is contained in:
Nianqing Yao 2024-06-03 11:37:19 +08:00
commit 4d52a45ebf

View file

@ -3,7 +3,7 @@
Name: abseil-cpp
Version: 20240116.2
Release: 1%{?dist}
Release: 2%{?dist}
Summary: C++ Common Libraries
# The entire source is Apache-2.0, except:
@ -110,7 +110,13 @@ Development headers for %{name}
%cmake_install
%check
%ifarch riscv64
# These tests will fail on RV64 system
# Confirmed on 2024-05-24
%ctest -E "absl_log_format_test|absl_kernel_timeout_internal_test"
%else
%ctest
%endif
%files
%license LICENSE
@ -234,6 +240,9 @@ Development headers for %{name}
%{_libdir}/pkgconfig/absl_*.pc
%changelog
* Thu May 23 2024 Nianqing Yao <imbearchild@outlook.com> - 20240116.2-2
- Disable a failed Test on RV64
* Tue Apr 09 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 20240116.2-1
- Update to 20240116.2 (close RHBZ#2274172)