Compare commits
18 Commits
Author | SHA256 | Date | |
---|---|---|---|
163fd5ae6f | |||
fc63d6d070 | |||
31b656f516 | |||
2b8f61dd2a | |||
f622032f8d | |||
413c09f15b | |||
0192ea58aa | |||
ed41ae525e | |||
dc386db9a5 | |||
8c2662e28b | |||
aa3199b0f7 | |||
104f11bc3e | |||
ecf5d1b661 | |||
30eeefed87 | |||
dab5a91d4d | |||
95139e20f9 | |||
7d2e3e3a32 | |||
f908d34ecb |
BIN
Catch2-3.4.0.tar.gz
(Stored with Git LFS)
BIN
Catch2-3.4.0.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
Catch2-3.8.1.tar.gz
Normal file
3
Catch2-3.8.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:18b3f70ac80fccc340d8c6ff0f339b2ae64944782f8d2fca2bd705cf47cadb79
|
||||
size 1197623
|
175
Catch2.changes
175
Catch2.changes
@@ -1,3 +1,178 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 30 13:09:06 UTC 2025 - Atri Bhattacharya <badshah400@gmail.com>
|
||||
|
||||
- Update to version 3.8.1:
|
||||
* Fixed bug where catch_discover_tests fails when no TEST_CASEs
|
||||
are present (gh#catchorg/Catch2#2962).
|
||||
* Fixed Clang 19 -Wc++20-extensions warning
|
||||
(gh#catchorg/Catch2#2968).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 23 03:25:17 UTC 2025 - Atri Bhattacharya <badshah400@gmail.com>
|
||||
|
||||
- Update to version 3.8.0:
|
||||
* Improvements:
|
||||
- Added std::initializer_list overloads for
|
||||
(Unordered)RangeEquals matcher (gh#catchorg/Catch2#2915,
|
||||
gh#catchorg/Catch2#2919).
|
||||
- Added explicit casts to silence GCC's Wconversion
|
||||
(gh#catchorg/Catch2#2875).
|
||||
- Made the use of builtin_constant_p tricks in assertion
|
||||
macros configurable (gh#catchorg/Catch2#2925) .
|
||||
- Cleaned out Clang-Tidy's performance-enum-size warnings.
|
||||
- Added support for using from_range generator with iterators
|
||||
with value_type = const T (gh#catchorg/Catch2#2926).
|
||||
* Bug fixes:
|
||||
- Fixed crash when stringifying pre-1970 (epoch) dates on
|
||||
Windows (gh#catchorg/Catch2#2944).
|
||||
- Fixes and improvements for catch_discover_tests CMake
|
||||
helper.
|
||||
- Bumped up the minimum required CMake version to build Catch2
|
||||
to 3.16.
|
||||
- Meson build now provides option to avoid installing Catch2.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 23 23:19:06 UTC 2024 - Atri Bhattacharya <badshah400@gmail.com>
|
||||
|
||||
- Update to version 3.7.1:
|
||||
- Applied the JUnit reporter's optimization from last release to
|
||||
the SonarQube reporter
|
||||
- Suppressed `-Wuseless-cast` in CHECK_THROWS_MATCHES
|
||||
(gh#catchorg/Catch2#2904)
|
||||
- Standardize exit codes for various failures
|
||||
- Fixed out-of-bounds access when the arg parser encounters
|
||||
single `-` as an argument (gh#catchorg/Catch2#2905)
|
||||
- Added catch_config_prefix_messages.hpp to meson build
|
||||
(gh#catchorg/Catch2#2903)
|
||||
- `catch_discover_tests` now supports skipped tests
|
||||
(gh#catchorg/Catch2#2873)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 13 19:14:33 UTC 2024 - Atri Bhattacharya <badshah400@gmail.com>
|
||||
|
||||
- Update to version 3.6.0:
|
||||
* Fixes
|
||||
- Fixed the JUnit reporter sometimes crashing when reporting a
|
||||
fatal error (gh#catchorg/Catch2#1210,
|
||||
gh#catchorg/Catch2#2855).
|
||||
* Improvements
|
||||
- Disable -Wnon-virtual-dtor in Decomposer and Matchers
|
||||
(gh#catchorg/Catch2#2854).
|
||||
- precision in floating point stringmakers defaults to
|
||||
max_digits10.
|
||||
- Column wrapping ignores ansi colour codes when calculating
|
||||
string width (gh#catchorg/Catch2#2833,
|
||||
gh#catchorg/Catch2#2849).
|
||||
* Miscellaneous
|
||||
- Conan support improvements
|
||||
- SelfTest target can be built through Bazel
|
||||
(gh#catchorg/Catch2#2857).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 10 13:38:14 UTC 2024 - Atri Bhattacharya <badshah400@gmail.com>
|
||||
|
||||
- Update to version 3.5.4:
|
||||
* Fixes:
|
||||
- Fixed potential compilation error when asked to generate
|
||||
random integers whose type did not match `std::(u)int*_t`.
|
||||
- Added missing outlined destructor causing
|
||||
`Wdelete-incomplete` when compiling against libstdc++ in
|
||||
C++23 mode (gh#catchorg/Catch2#2852).
|
||||
- Fixed regression where decomposing assertion with const
|
||||
instance of `std::foo_ordering` would not compile.
|
||||
* Improvements:
|
||||
- Reintroduced support for GCC 5 and 6
|
||||
(gh#catchorg/Catch2#2836).
|
||||
- `CATCH_CONFIG_DEFAULT_REPORTER` can now be an arbitrary
|
||||
reporter spec.
|
||||
- Improved performance of generating 64bit random integers by
|
||||
20+%.
|
||||
* Miscellaneous:
|
||||
- Significantly improved Conan in-tree recipe
|
||||
(gh#catchorg/Catch2#2831).
|
||||
- `DL_PATHS` in `catch_discover_tests` now supports multiple
|
||||
arguments (gh#catchorg/Catch2#2852,
|
||||
gh#catchorg/Catch2#2736).
|
||||
- Fixed preprocessor logic for checking whether we expect
|
||||
reproducible floating point results in tests.
|
||||
- Improved the floating point tests structure to avoid
|
||||
`Wunused` when the reproducibility tests are disabled
|
||||
(gh#catchorg/Catch2#2845).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 12 00:46:11 UTC 2024 - Atri Bhattacharya <badshah400@gmail.com>
|
||||
|
||||
- Update to version 3.5.3:
|
||||
* Fixed OOB access when computing filename tag (from the -#
|
||||
flag) for file without extension (gh#catchorg/Catch2#2798).
|
||||
* Fixed the linking against log on Android to be PRIVATE
|
||||
(gh#catchorg/Catch2#2815).
|
||||
* Fixed Wuseless-cast in benchmarking internals
|
||||
(gh#catchorg/Catch2#2823).
|
||||
* Restored compatibility with VS2017 (gh#catchorg/Catch2#2792,
|
||||
gh#catchorg/Catch2#2822).
|
||||
* Suppressed clang-tidy's bugprone-chained-comparison in
|
||||
assertions (gh#catchorg/Catch2#2801).
|
||||
* Improved the static analysis mode to evaluate arguments to
|
||||
TEST_CASE and SECTION (gh#catchorg/Catch2#2817).
|
||||
* Added support for literal-zero detectors based on consteval
|
||||
constructors.
|
||||
* Disabled tests for FP random generator reproducibility on
|
||||
non-SSE2 x86 targets (gh#catchorg/Catch2#2796).
|
||||
* Modified the in-tree Conan recipe to support Conan 2
|
||||
(gh#catchorg/Catch2#2805).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 19 18:58:25 UTC 2024 - Atri Bhattacharya <badshah400@gmail.com>
|
||||
|
||||
- Update to version 3.5.2:
|
||||
* Fixed -Wsubobject-linkage in the Console reporter
|
||||
(gh#catchorg/Catch2#2794).
|
||||
* Fixed adding new CLI Options to lvalue parser using |
|
||||
(gh#catchorg/Catch2#2787).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 2 12:15:06 UTC 2024 - Atri Bhattacharya <badshah400@gmail.com>
|
||||
|
||||
- Update to version 3.5.1:
|
||||
* Significantly improved performance of the CLI parsing.
|
||||
* Added support for Bazel modules (gh#catchorg/Catch2#2781).
|
||||
* Added CMake option to disable the build reproducibility
|
||||
settings (gh#catchorg/Catch2#2785).
|
||||
* Added log library linking to the Meson build
|
||||
(gh#catchorg/Catch2#2784).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Dec 15 14:38:43 UTC 2023 - Atri Bhattacharya <badshah400@gmail.com>
|
||||
|
||||
- Update to version 3.5.0:
|
||||
* Introduced CATCH_CONFIG_PREFIX_MESSAGES to prefix only logging
|
||||
macros (gh#catchorg/Catch2#2544).
|
||||
* Section hints in static analysis mode are now const.
|
||||
* from_range generator supports C arrays and ranges that require
|
||||
ADL (gh#catchorg/Catch2#2737).
|
||||
* Stringification support for std::optional now also includes
|
||||
std::nullopt (gh#catchorg/Catch2#2740).
|
||||
* The Console reporter flushes output after writing benchmark runtime estimate.
|
||||
* Added workaround to enable compilation with ICC 19.1
|
||||
(gh#catchorg/Catch2#2551, gh#catchorg/Catch2#2766).
|
||||
* Compiling Catch2 for XBox should work out of the box
|
||||
(gh#catchorg/Catch2#2772).
|
||||
* Compiling Catch2 with exceptions disabled no longer triggers
|
||||
Wunused-function (gh#catchorg/Catch2#2726).
|
||||
* random Generators for integral types are now reproducible
|
||||
across different platforms.
|
||||
* random Generators for float and double are now reproducible
|
||||
across different platforms.
|
||||
* Fix: UDL declaration inside Catch2 are now strictly conforming
|
||||
to the standard.
|
||||
* Fixed CAPTURE tests failing to compile in C++23 mode
|
||||
(gh#catchorg/Catch2#2744).
|
||||
* Fixed missing include in catch_message.hpp
|
||||
(gh#catchorg/Catch2#2758).
|
||||
* Fixed CHECK_ELSE suppressing failure from uncaught
|
||||
exceptions(gh#catchorg/Catch2#2723).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 27 12:12:56 UTC 2023 - Atri Bhattacharya <badshah400@gmail.com>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package Catch2
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
%define __builder ninja
|
||||
Name: Catch2
|
||||
Version: 3.4.0
|
||||
Version: 3.8.1
|
||||
Release: 0
|
||||
Summary: A modern, C++-native, header-only, test framework for unit-tests, TDD and BDD
|
||||
License: BSL-1.0
|
||||
|
Reference in New Issue
Block a user