forked from catchorg/Catch2
Compare commits
45 Commits
v3.7.1
...
devel-defa
Author | SHA1 | Date | |
---|---|---|---|
|
71a3db4815 | ||
|
dba0b3fa82 | ||
|
1e7b879fae | ||
|
4ff57aba42 | ||
|
dde8220613 | ||
|
cecb02e68f | ||
|
66085dac55 | ||
|
5a6d70eebb | ||
|
10d1a2750c | ||
|
c17d69f813 | ||
|
4c93a595a1 | ||
|
e8f4b60e62 | ||
|
371b11b5a8 | ||
|
8039e3ea1e | ||
|
1d3bfb324d | ||
|
5c97a8583d | ||
|
8cfca70ae8 | ||
|
6aac11e17d | ||
|
ec571515c8 | ||
|
edb6f80867 | ||
|
25b86ef3fd | ||
|
4c8671cfbb | ||
|
5b3b228603 | ||
|
2b60af89e2 | ||
|
f51dc98dfc | ||
|
76f70b1403 | ||
|
914aeecfe2 | ||
|
232e893785 | ||
|
6e9c34aa20 | ||
|
7d7b2f89f2 | ||
|
b0d0aa43e6 | ||
|
a3b67a3abe | ||
|
0321d2fce3 | ||
|
506276c592 | ||
|
f5cee49c71 | ||
|
7bbd4b9075 | ||
|
119a7bbe53 | ||
|
9c5a4cf44e | ||
|
e260288807 | ||
|
7c2e1fb1b2 | ||
|
a6ee7e20cd | ||
|
0b2af56271 | ||
|
69d62abc9a | ||
|
1e0ccb1b21 | ||
|
5ad66ada7b |
3
.bazelrc
3
.bazelrc
@@ -1,3 +1,6 @@
|
|||||||
|
# Enable Bzlmod for every Bazel command
|
||||||
|
common --enable_bzlmod
|
||||||
|
|
||||||
build --enable_platform_specific_config
|
build --enable_platform_specific_config
|
||||||
|
|
||||||
build:gcc9 --cxxopt=-std=c++2a
|
build:gcc9 --cxxopt=-std=c++2a
|
||||||
|
@@ -34,7 +34,7 @@ Checks: >-
|
|||||||
-modernize-pass-by-value,
|
-modernize-pass-by-value,
|
||||||
|
|
||||||
performance-*,
|
performance-*,
|
||||||
-performance-enum-size,
|
performance-enum-size,
|
||||||
|
|
||||||
portability-*,
|
portability-*,
|
||||||
|
|
||||||
@@ -49,6 +49,7 @@ Checks: >-
|
|||||||
-readability-implicit-bool-conversion,
|
-readability-implicit-bool-conversion,
|
||||||
-readability-isolate-declaration,
|
-readability-isolate-declaration,
|
||||||
-readability-magic-numbers,
|
-readability-magic-numbers,
|
||||||
|
-readability-math-missing-parentheses, #no, 'a + B * C' obeying math rules is not confusing,
|
||||||
-readability-named-parameter,
|
-readability-named-parameter,
|
||||||
-readability-qualified-auto,
|
-readability-qualified-auto,
|
||||||
-readability-redundant-access-specifiers,
|
-readability-redundant-access-specifiers,
|
||||||
|
@@ -1,8 +1,7 @@
|
|||||||
cmake_minimum_required(VERSION 3.15)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
project(PackageTest CXX)
|
project(PackageTest LANGUAGES CXX)
|
||||||
|
|
||||||
find_package(Catch2 CONFIG REQUIRED)
|
find_package(Catch2 CONFIG REQUIRED)
|
||||||
|
|
||||||
add_executable(test_package test_package.cpp)
|
add_executable(test_package test_package.cpp)
|
||||||
target_link_libraries(test_package Catch2::Catch2WithMain)
|
target_link_libraries(test_package Catch2::Catch2WithMain)
|
||||||
target_compile_features(test_package PRIVATE cxx_std_14)
|
|
||||||
|
10
.github/workflows/linux-bazel-builds.yml
vendored
10
.github/workflows/linux-bazel-builds.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: Bazel build
|
name: Linux Builds (Bazel)
|
||||||
|
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
@@ -7,18 +7,18 @@ jobs:
|
|||||||
name: Linux Ubuntu 22.04 Bazel build <GCC 11.2.0>
|
name: Linux Ubuntu 22.04 Bazel build <GCC 11.2.0>
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
compilation_mode: [fastbuild, dbg, opt]
|
compilation_mode: [fastbuild, dbg, opt]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Mount bazel cache
|
- name: Mount Bazel cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: "/home/runner/.cache/bazel"
|
path: "/home/runner/.cache/bazel"
|
||||||
key: bazel-ubuntu22-gcc11
|
key: bazel-ubuntu22-gcc11
|
||||||
|
|
||||||
- name: Build Catch2
|
- name: Build
|
||||||
run: |
|
run: bazelisk build --compilation_mode=${{matrix.compilation_mode}} //...
|
||||||
bazelisk build --compilation_mode=${{matrix.compilation_mode}} //...
|
|
||||||
|
12
.github/workflows/linux-meson-builds.yml
vendored
12
.github/workflows/linux-meson-builds.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: Linux builds (meson)
|
name: Linux Builds (Meson)
|
||||||
|
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
@@ -7,6 +7,7 @@ jobs:
|
|||||||
name: meson ${{matrix.cxx}}, C++${{matrix.std}}, ${{matrix.build_type}}
|
name: meson ${{matrix.cxx}}, C++${{matrix.std}}, ${{matrix.build_type}}
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
cxx:
|
cxx:
|
||||||
- g++-11
|
- g++-11
|
||||||
@@ -25,7 +26,7 @@ jobs:
|
|||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y meson ninja-build ${{matrix.other_pkgs}}
|
sudo apt-get install -y meson ninja-build ${{matrix.other_pkgs}}
|
||||||
|
|
||||||
- name: Configure build
|
- name: Configure
|
||||||
env:
|
env:
|
||||||
CXX: ${{matrix.cxx}}
|
CXX: ${{matrix.cxx}}
|
||||||
CXXFLAGS: -std=c++${{matrix.std}} ${{matrix.cxxflags}}
|
CXXFLAGS: -std=c++${{matrix.std}} ${{matrix.cxxflags}}
|
||||||
@@ -34,11 +35,10 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
meson -Dbuildtype=${{matrix.build_type}} ${{runner.workspace}}/meson-build
|
meson -Dbuildtype=${{matrix.build_type}} ${{runner.workspace}}/meson-build
|
||||||
|
|
||||||
- name: Build tests + lib
|
- name: Build
|
||||||
working-directory: ${{runner.workspace}}/meson-build
|
working-directory: ${{runner.workspace}}/meson-build
|
||||||
run: ninja
|
run: ninja
|
||||||
|
|
||||||
- name: Run tests
|
- name: Test
|
||||||
working-directory: ${{runner.workspace}}/meson-build
|
working-directory: ${{runner.workspace}}/meson-build
|
||||||
run: |
|
run: meson test --verbose
|
||||||
meson test --verbose
|
|
||||||
|
121
.github/workflows/linux-other-builds.yml
vendored
121
.github/workflows/linux-other-builds.yml
vendored
@@ -1,72 +1,73 @@
|
|||||||
# The builds in this file are more complex (e.g. they need custom CMake
|
# The builds in this file are more complex (e.g. they need custom CMake
|
||||||
# configuration) and thus are unsuitable to the simple build matrix
|
# configuration) and thus are unsuitable to the simple build matrix
|
||||||
# approach used in simple-builds
|
# approach used in simple-builds
|
||||||
name: Linux builds (complex)
|
name: Linux Builds (Complex)
|
||||||
|
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: ${{matrix.build_description}}, ${{matrix.cxx}}, C++${{matrix.std}} ${{matrix.build_type}}
|
name: ${{matrix.build_description}}, ${{matrix.cxx}}, C++${{matrix.std}} ${{matrix.build_type}}
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-22.04
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
# We add builds one by one in this case, because there are no
|
# We add builds one by one in this case, because there are no
|
||||||
# dimensions that are shared across the builds
|
# dimensions that are shared across the builds
|
||||||
include:
|
include:
|
||||||
|
|
||||||
# Single surrogate header build
|
# Single surrogate header build
|
||||||
- cxx: clang++-10
|
- cxx: clang++-14
|
||||||
build_description: Surrogates build
|
build_description: Surrogates build
|
||||||
build_type: Debug
|
build_type: Debug
|
||||||
std: 14
|
std: 14
|
||||||
other_pkgs: clang-10
|
other_pkgs: clang-14
|
||||||
cmake_configurations: -DCATCH_BUILD_SURROGATES=ON
|
cmake_configurations: -DCATCH_BUILD_SURROGATES=ON
|
||||||
|
|
||||||
# Extras and examples with gcc-7
|
# Extras and examples with gcc-11
|
||||||
- cxx: g++-7
|
- cxx: g++-11
|
||||||
build_description: Extras + Examples
|
build_description: Extras + Examples
|
||||||
build_type: Debug
|
build_type: Debug
|
||||||
std: 14
|
std: 14
|
||||||
other_pkgs: g++-7
|
other_pkgs: g++-11
|
||||||
cmake_configurations: -DCATCH_BUILD_EXTRA_TESTS=ON -DCATCH_BUILD_EXAMPLES=ON -DCATCH_ENABLE_CMAKE_HELPER_TESTS=ON
|
cmake_configurations: -DCATCH_BUILD_EXTRA_TESTS=ON -DCATCH_BUILD_EXAMPLES=ON -DCATCH_ENABLE_CMAKE_HELPER_TESTS=ON
|
||||||
- cxx: g++-7
|
- cxx: g++-11
|
||||||
build_description: Extras + Examples
|
build_description: Extras + Examples
|
||||||
build_type: Release
|
build_type: Release
|
||||||
std: 14
|
std: 14
|
||||||
other_pkgs: g++-7
|
other_pkgs: g++-11
|
||||||
cmake_configurations: -DCATCH_BUILD_EXTRA_TESTS=ON -DCATCH_BUILD_EXAMPLES=ON -DCATCH_ENABLE_CMAKE_HELPER_TESTS=ON
|
cmake_configurations: -DCATCH_BUILD_EXTRA_TESTS=ON -DCATCH_BUILD_EXAMPLES=ON -DCATCH_ENABLE_CMAKE_HELPER_TESTS=ON
|
||||||
|
|
||||||
# Extras and examples with Clang-10
|
# Extras and examples with Clang-14
|
||||||
- cxx: clang++-10
|
- cxx: clang++-14
|
||||||
build_description: Extras + Examples
|
build_description: Extras + Examples
|
||||||
build_type: Debug
|
build_type: Debug
|
||||||
std: 17
|
std: 17
|
||||||
other_pkgs: clang-10
|
other_pkgs: clang-14
|
||||||
cmake_configurations: -DCATCH_BUILD_EXTRA_TESTS=ON -DCATCH_BUILD_EXAMPLES=ON -DCATCH_ENABLE_CMAKE_HELPER_TESTS=ON
|
cmake_configurations: -DCATCH_BUILD_EXTRA_TESTS=ON -DCATCH_BUILD_EXAMPLES=ON -DCATCH_ENABLE_CMAKE_HELPER_TESTS=ON
|
||||||
- cxx: clang++-10
|
- cxx: clang++-14
|
||||||
build_description: Extras + Examples
|
build_description: Extras + Examples
|
||||||
build_type: Release
|
build_type: Release
|
||||||
std: 17
|
std: 17
|
||||||
other_pkgs: clang-10
|
other_pkgs: clang-14
|
||||||
cmake_configurations: -DCATCH_BUILD_EXTRA_TESTS=ON -DCATCH_BUILD_EXAMPLES=ON -DCATCH_ENABLE_CMAKE_HELPER_TESTS=ON
|
cmake_configurations: -DCATCH_BUILD_EXTRA_TESTS=ON -DCATCH_BUILD_EXAMPLES=ON -DCATCH_ENABLE_CMAKE_HELPER_TESTS=ON
|
||||||
|
|
||||||
# Configure tests with Clang-10
|
# Configure tests with Clang-14
|
||||||
- cxx: clang++-10
|
- cxx: clang++-14
|
||||||
build_description: CMake configuration tests
|
build_description: CMake configuration tests
|
||||||
build_type: Debug
|
build_type: Debug
|
||||||
std: 14
|
std: 14
|
||||||
other_pkgs: clang-10
|
other_pkgs: clang-14
|
||||||
cmake_configurations: -DCATCH_ENABLE_CONFIGURE_TESTS=ON
|
cmake_configurations: -DCATCH_ENABLE_CONFIGURE_TESTS=ON
|
||||||
|
|
||||||
# Valgrind test Clang-10
|
# Valgrind test Clang-14
|
||||||
- cxx: clang++-10
|
# - cxx: clang++-14
|
||||||
build_description: Valgrind tests
|
# build_description: Valgrind tests
|
||||||
build_type: Debug
|
# build_type: Debug
|
||||||
std: 14
|
# std: 14
|
||||||
other_pkgs: clang-10 valgrind
|
# other_pkgs: clang-14 valgrind
|
||||||
cmake_configurations: -DMEMORYCHECK_COMMAND=`which valgrind` -DMEMORYCHECK_COMMAND_OPTIONS="-q --track-origins=yes --leak-check=full --num-callers=50 --show-leak-kinds=definite --error-exitcode=1"
|
# cmake_configurations: -DMEMORYCHECK_COMMAND=`which valgrind` -DMEMORYCHECK_COMMAND_OPTIONS="-q --track-origins=yes --leak-check=full --num-callers=50 --show-leak-kinds=definite --error-exitcode=1"
|
||||||
other_ctest_args: -T memcheck -LE uses-python
|
# other_ctest_args: -T memcheck -LE uses-python
|
||||||
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
@@ -78,77 +79,51 @@ jobs:
|
|||||||
sudo apt-get install -y ninja-build ${{matrix.other_pkgs}}
|
sudo apt-get install -y ninja-build ${{matrix.other_pkgs}}
|
||||||
|
|
||||||
- name: Configure build
|
- name: Configure build
|
||||||
working-directory: ${{runner.workspace}}
|
|
||||||
env:
|
|
||||||
CXX: ${{matrix.cxx}}
|
|
||||||
CXXFLAGS: ${{matrix.cxxflags}}
|
|
||||||
# Note: $GITHUB_WORKSPACE is distinct from ${{runner.workspace}}.
|
# Note: $GITHUB_WORKSPACE is distinct from ${{runner.workspace}}.
|
||||||
# This is important
|
# This is important
|
||||||
run: |
|
run: |
|
||||||
cmake -Bbuild -H$GITHUB_WORKSPACE \
|
cmake --preset basic-tests -GNinja \
|
||||||
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
|
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
|
||||||
|
-DCMAKE_CXX_COMPILER=${{matrix.cxx}} \
|
||||||
-DCMAKE_CXX_STANDARD=${{matrix.std}} \
|
-DCMAKE_CXX_STANDARD=${{matrix.std}} \
|
||||||
-DCMAKE_CXX_STANDARD_REQUIRED=ON \
|
${{matrix.cmake_configurations}}
|
||||||
-DCMAKE_CXX_EXTENSIONS=OFF \
|
|
||||||
-DCATCH_DEVELOPMENT_BUILD=ON \
|
|
||||||
${{matrix.cmake_configurations}} \
|
|
||||||
-G Ninja
|
|
||||||
|
|
||||||
- name: Build tests + lib
|
- name: Build
|
||||||
working-directory: ${{runner.workspace}}/build
|
run: cmake --build build
|
||||||
run: ninja
|
|
||||||
|
- name: Test
|
||||||
|
run: ctest --test-dir build -j --output-on-failure
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
env:
|
|
||||||
CTEST_OUTPUT_ON_FAILURE: 1
|
|
||||||
working-directory: ${{runner.workspace}}/build
|
|
||||||
run: ctest -C ${{matrix.build_type}} -j `nproc` ${{matrix.other_ctest_args}}
|
|
||||||
clang-tidy:
|
clang-tidy:
|
||||||
name: clang-tidy ${{matrix.version}}, ${{matrix.build_description}}, C++${{matrix.std}} ${{matrix.build_type}}
|
name: clang-tidy
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- version: "15"
|
|
||||||
build_description: all
|
|
||||||
build_type: Debug
|
|
||||||
std: 17
|
|
||||||
other_pkgs: ''
|
|
||||||
cmake_configurations: -DCATCH_BUILD_EXAMPLES=ON -DCATCH_ENABLE_CMAKE_HELPER_TESTS=ON
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Prepare environment
|
- name: Prepare environment
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y ninja-build clang-${{matrix.version}} clang-tidy-${{matrix.version}} ${{matrix.other_pkgs}}
|
sudo apt-get install -y ninja-build clang-15 clang-tidy-15
|
||||||
|
|
||||||
- name: Configure build
|
- name: Configure
|
||||||
working-directory: ${{runner.workspace}}
|
|
||||||
env:
|
|
||||||
CXX: clang++-${{matrix.version}}
|
|
||||||
CXXFLAGS: ${{matrix.cxxflags}}
|
|
||||||
# Note: $GITHUB_WORKSPACE is distinct from ${{runner.workspace}}.
|
# Note: $GITHUB_WORKSPACE is distinct from ${{runner.workspace}}.
|
||||||
# This is important
|
# This is important
|
||||||
run: |
|
run: |
|
||||||
clangtidy="clang-tidy-${{matrix.version}};-use-color"
|
clangtidy="clang-tidy-15;-use-color"
|
||||||
# Use a dummy compiler/linker/ar/ranlib to effectively disable the
|
# Use a dummy compiler/linker/ar/ranlib to effectively disable the
|
||||||
# compilation and only run clang-tidy.
|
# compilation and only run clang-tidy.
|
||||||
cmake -Bbuild -H$GITHUB_WORKSPACE \
|
cmake --preset basic-tests -GNinja \
|
||||||
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
|
|
||||||
-DCMAKE_CXX_STANDARD=${{matrix.std}} \
|
|
||||||
-DCMAKE_CXX_STANDARD_REQUIRED=ON \
|
|
||||||
-DCMAKE_CXX_EXTENSIONS=OFF \
|
|
||||||
-DCATCH_DEVELOPMENT_BUILD=ON \
|
|
||||||
-DCMAKE_CXX_CLANG_TIDY="$clangtidy" \
|
|
||||||
-DCMAKE_CXX_COMPILER_LAUNCHER=/usr/bin/true \
|
|
||||||
-DCMAKE_AR=/usr/bin/true \
|
-DCMAKE_AR=/usr/bin/true \
|
||||||
|
-DCMAKE_BUILD_TYPE=Debug \
|
||||||
|
-DCMAKE_CXX_CLANG_TIDY="$clangtidy" \
|
||||||
-DCMAKE_CXX_COMPILER_AR=/usr/bin/true \
|
-DCMAKE_CXX_COMPILER_AR=/usr/bin/true \
|
||||||
-DCMAKE_RANLIB=/usr/bin/true \
|
-DCMAKE_CXX_COMPILER_LAUNCHER=/usr/bin/true \
|
||||||
|
-DCMAKE_CXX_COMPILER=clang++-15 \
|
||||||
-DCMAKE_CXX_LINK_EXECUTABLE=/usr/bin/true \
|
-DCMAKE_CXX_LINK_EXECUTABLE=/usr/bin/true \
|
||||||
${{matrix.cmake_configurations}} \
|
-DCMAKE_CXX_STANDARD=17 \
|
||||||
-G Ninja
|
-DCMAKE_RANLIB=/usr/bin/true \
|
||||||
|
-DCATCH_BUILD_EXAMPLES=ON \
|
||||||
|
-DCATCH_ENABLE_CMAKE_HELPER_TESTS=ON
|
||||||
|
|
||||||
- name: Run clang-tidy
|
- name: Run clang-tidy
|
||||||
working-directory: ${{runner.workspace}}/build
|
run: cmake --build build
|
||||||
run: ninja
|
|
||||||
|
100
.github/workflows/linux-simple-builds.yml
vendored
100
.github/workflows/linux-simple-builds.yml
vendored
@@ -1,32 +1,33 @@
|
|||||||
name: Linux builds (basic)
|
name: Linux Builds (Basic)
|
||||||
|
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: ${{matrix.cxx}}, C++${{matrix.std}}, ${{matrix.build_type}}
|
name: ${{matrix.cxx}}, C++${{matrix.std}}, ${{matrix.build_type}}
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-22.04
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
cxx:
|
cxx:
|
||||||
- g++-5
|
|
||||||
- g++-6
|
|
||||||
- g++-7
|
- g++-7
|
||||||
- g++-8
|
- g++-8
|
||||||
- g++-9
|
- g++-9
|
||||||
- g++-10
|
- g++-10
|
||||||
|
- g++-11
|
||||||
|
- g++-12
|
||||||
- clang++-6.0
|
- clang++-6.0
|
||||||
- clang++-7
|
- clang++-7
|
||||||
- clang++-8
|
- clang++-8
|
||||||
- clang++-9
|
- clang++-9
|
||||||
- clang++-10
|
- clang++-10
|
||||||
|
- clang++-11
|
||||||
|
- clang++-12
|
||||||
|
- clang++-13
|
||||||
|
- clang++-14
|
||||||
build_type: [Debug, Release]
|
build_type: [Debug, Release]
|
||||||
std: [14]
|
std: [14]
|
||||||
include:
|
include:
|
||||||
- cxx: g++-5
|
|
||||||
other_pkgs: g++-5
|
|
||||||
- cxx: g++-6
|
|
||||||
other_pkgs: g++-6
|
|
||||||
- cxx: g++-7
|
- cxx: g++-7
|
||||||
other_pkgs: g++-7
|
other_pkgs: g++-7
|
||||||
- cxx: g++-8
|
- cxx: g++-8
|
||||||
@@ -35,6 +36,10 @@ jobs:
|
|||||||
other_pkgs: g++-9
|
other_pkgs: g++-9
|
||||||
- cxx: g++-10
|
- cxx: g++-10
|
||||||
other_pkgs: g++-10
|
other_pkgs: g++-10
|
||||||
|
- cxx: g++-11
|
||||||
|
other_pkgs: g++-11
|
||||||
|
- cxx: g++-12
|
||||||
|
other_pkgs: g++-12
|
||||||
- cxx: clang++-6.0
|
- cxx: clang++-6.0
|
||||||
other_pkgs: clang-6.0
|
other_pkgs: clang-6.0
|
||||||
- cxx: clang++-7
|
- cxx: clang++-7
|
||||||
@@ -45,79 +50,64 @@ jobs:
|
|||||||
other_pkgs: clang-9
|
other_pkgs: clang-9
|
||||||
- cxx: clang++-10
|
- cxx: clang++-10
|
||||||
other_pkgs: clang-10
|
other_pkgs: clang-10
|
||||||
# Clang 6 + C++17
|
- cxx: clang++-11
|
||||||
# does not work with the default libstdc++ version thanks
|
other_pkgs: clang-11
|
||||||
# to a disagreement on variant implementation.
|
- cxx: clang++-12
|
||||||
# - cxx: clang++-6.0
|
other_pkgs: clang-12
|
||||||
# build_type: Debug
|
- cxx: clang++-13
|
||||||
# std: 17
|
other_pkgs: clang-13
|
||||||
# other_pkgs: clang-6.0
|
- cxx: clang++-14
|
||||||
# - cxx: clang++-6.0
|
other_pkgs: clang-14
|
||||||
# build_type: Release
|
# Clang 14 + C++17
|
||||||
# std: 17
|
- cxx: clang++-14
|
||||||
# other_pkgs: clang-6.0
|
|
||||||
# Clang 10 + C++17
|
|
||||||
- cxx: clang++-10
|
|
||||||
build_type: Debug
|
build_type: Debug
|
||||||
std: 17
|
std: 17
|
||||||
other_pkgs: clang-10
|
other_pkgs: clang-14
|
||||||
- cxx: clang++-10
|
- cxx: clang++-14
|
||||||
build_type: Release
|
build_type: Release
|
||||||
std: 17
|
std: 17
|
||||||
other_pkgs: clang-10
|
other_pkgs: clang-14
|
||||||
- cxx: clang++-10
|
- cxx: clang++-14
|
||||||
build_type: Debug
|
build_type: Debug
|
||||||
std: 20
|
std: 20
|
||||||
other_pkgs: clang-10
|
other_pkgs: clang-14
|
||||||
- cxx: clang++-10
|
- cxx: clang++-14
|
||||||
build_type: Release
|
build_type: Release
|
||||||
std: 20
|
std: 20
|
||||||
other_pkgs: clang-10
|
other_pkgs: clang-14
|
||||||
- cxx: g++-10
|
- cxx: g++-11
|
||||||
build_type: Debug
|
build_type: Debug
|
||||||
std: 20
|
std: 20
|
||||||
other_pkgs: g++-10
|
other_pkgs: g++-11
|
||||||
- cxx: g++-10
|
- cxx: g++-11
|
||||||
build_type: Release
|
build_type: Release
|
||||||
std: 20
|
std: 20
|
||||||
other_pkgs: g++-10
|
other_pkgs: g++-11
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Add repositories for older GCC
|
- name: Add repositories for older compilers
|
||||||
run: |
|
run: |
|
||||||
sudo apt-add-repository 'deb http://azure.archive.ubuntu.com/ubuntu/ bionic main'
|
sudo apt-add-repository 'deb http://azure.archive.ubuntu.com/ubuntu/ focal main'
|
||||||
sudo apt-add-repository 'deb http://azure.archive.ubuntu.com/ubuntu/ bionic universe'
|
sudo apt-add-repository 'deb http://azure.archive.ubuntu.com/ubuntu/ focal universe'
|
||||||
if: ${{ matrix.cxx == 'g++-5' || matrix.cxx == 'g++-6' }}
|
|
||||||
|
|
||||||
- name: Prepare environment
|
- name: Prepare environment
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y ninja-build ${{matrix.other_pkgs}}
|
sudo apt-get install -y ninja-build ${{matrix.other_pkgs}}
|
||||||
|
|
||||||
- name: Configure build
|
- name: Configure
|
||||||
working-directory: ${{runner.workspace}}
|
|
||||||
env:
|
|
||||||
CXX: ${{matrix.cxx}}
|
|
||||||
CXXFLAGS: ${{matrix.cxxflags}}
|
|
||||||
# Note: $GITHUB_WORKSPACE is distinct from ${{runner.workspace}}.
|
# Note: $GITHUB_WORKSPACE is distinct from ${{runner.workspace}}.
|
||||||
# This is important
|
# This is important
|
||||||
run: |
|
run: |
|
||||||
cmake -Bbuild -H$GITHUB_WORKSPACE \
|
cmake --preset basic-tests -GNinja \
|
||||||
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
|
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
|
||||||
-DCMAKE_CXX_STANDARD=${{matrix.std}} \
|
-DCMAKE_CXX_COMPILER=${{matrix.cxx}} \
|
||||||
-DCMAKE_CXX_STANDARD_REQUIRED=ON \
|
-DCMAKE_CXX_STANDARD=${{matrix.std}}
|
||||||
-DCMAKE_CXX_EXTENSIONS=OFF \
|
|
||||||
-DCATCH_DEVELOPMENT_BUILD=ON \
|
|
||||||
-G Ninja
|
|
||||||
|
|
||||||
- name: Build tests + lib
|
- name: Build
|
||||||
working-directory: ${{runner.workspace}}/build
|
run: cmake --build build
|
||||||
run: ninja
|
|
||||||
|
|
||||||
- name: Run tests
|
- name: Test
|
||||||
env:
|
run: ctest --test-dir build -j --output-on-failure
|
||||||
CTEST_OUTPUT_ON_FAILURE: 1
|
|
||||||
working-directory: ${{runner.workspace}}/build
|
|
||||||
run: ctest -C ${{matrix.build_type}} -j `nproc`
|
|
||||||
|
44
.github/workflows/mac-builds-m1.yml
vendored
44
.github/workflows/mac-builds-m1.yml
vendored
@@ -1,44 +0,0 @@
|
|||||||
name: M1 Mac builds
|
|
||||||
|
|
||||||
on: [push, pull_request]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: macos-14
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
cxx:
|
|
||||||
- clang++
|
|
||||||
build_type: [Debug, Release]
|
|
||||||
std: [14, 17]
|
|
||||||
include:
|
|
||||||
- build_type: Debug
|
|
||||||
examples: ON
|
|
||||||
extra_tests: ON
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Configure build
|
|
||||||
working-directory: ${{runner.workspace}}
|
|
||||||
env:
|
|
||||||
CXX: ${{matrix.cxx}}
|
|
||||||
CXXFLAGS: ${{matrix.cxxflags}}
|
|
||||||
run: |
|
|
||||||
cmake -Bbuild -H$GITHUB_WORKSPACE \
|
|
||||||
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
|
|
||||||
-DCMAKE_CXX_STANDARD=${{matrix.std}} \
|
|
||||||
-DCMAKE_CXX_STANDARD_REQUIRED=ON \
|
|
||||||
-DCATCH_DEVELOPMENT_BUILD=ON \
|
|
||||||
-DCATCH_BUILD_EXAMPLES=${{matrix.examples}} \
|
|
||||||
-DCATCH_BUILD_EXTRA_TESTS=${{matrix.examples}}
|
|
||||||
|
|
||||||
- name: Build tests + lib
|
|
||||||
working-directory: ${{runner.workspace}}/build
|
|
||||||
run: make -j `sysctl -n hw.ncpu`
|
|
||||||
|
|
||||||
- name: Run tests
|
|
||||||
env:
|
|
||||||
CTEST_OUTPUT_ON_FAILURE: 1
|
|
||||||
working-directory: ${{runner.workspace}}/build
|
|
||||||
run: ctest -C ${{matrix.build_type}} -j `sysctl -n hw.ncpu`
|
|
40
.github/workflows/mac-builds.yml
vendored
40
.github/workflows/mac-builds.yml
vendored
@@ -1,44 +1,32 @@
|
|||||||
name: Mac builds
|
name: Mac Builds
|
||||||
|
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: macos-12
|
# From macos-14 forward, the baseline "macos-X" image is Arm based,
|
||||||
|
# and not Intel based.
|
||||||
|
runs-on: ${{matrix.image}}
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
cxx:
|
image: [macos-13, macos-14, macos-15]
|
||||||
- clang++
|
|
||||||
build_type: [Debug, Release]
|
build_type: [Debug, Release]
|
||||||
std: [14, 17]
|
std: [14, 17]
|
||||||
include:
|
|
||||||
- build_type: Debug
|
|
||||||
examples: ON
|
|
||||||
extra_tests: ON
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Configure build
|
- name: Configure
|
||||||
working-directory: ${{runner.workspace}}
|
|
||||||
env:
|
|
||||||
CXX: ${{matrix.cxx}}
|
|
||||||
CXXFLAGS: ${{matrix.cxxflags}}
|
|
||||||
run: |
|
run: |
|
||||||
cmake -Bbuild -H$GITHUB_WORKSPACE \
|
cmake --preset basic-tests -GNinja \
|
||||||
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
|
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
|
||||||
-DCMAKE_CXX_STANDARD=${{matrix.std}} \
|
-DCMAKE_CXX_STANDARD=${{matrix.std}} \
|
||||||
-DCMAKE_CXX_STANDARD_REQUIRED=ON \
|
-DCATCH_BUILD_EXAMPLES=ON \
|
||||||
-DCATCH_DEVELOPMENT_BUILD=ON \
|
-DCATCH_BUILD_EXTRA_TESTS=ON
|
||||||
-DCATCH_BUILD_EXAMPLES=${{matrix.examples}} \
|
|
||||||
-DCATCH_BUILD_EXTRA_TESTS=${{matrix.examples}}
|
|
||||||
|
|
||||||
- name: Build tests + lib
|
- name: Build
|
||||||
working-directory: ${{runner.workspace}}/build
|
run: cmake --build build
|
||||||
run: make -j `sysctl -n hw.ncpu`
|
|
||||||
|
|
||||||
- name: Run tests
|
- name: Test
|
||||||
env:
|
run: ctest --test-dir build -j --output-on-failure
|
||||||
CTEST_OUTPUT_ON_FAILURE: 1
|
|
||||||
working-directory: ${{runner.workspace}}/build
|
|
||||||
run: ctest -C ${{matrix.build_type}} -j `sysctl -n hw.ncpu`
|
|
||||||
|
@@ -5,7 +5,7 @@ on: [push, pull_request]
|
|||||||
jobs:
|
jobs:
|
||||||
conan_builds:
|
conan_builds:
|
||||||
name: Conan ${{matrix.conan_version}}
|
name: Conan ${{matrix.conan_version}}
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-22.04
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
conan_version:
|
conan_version:
|
||||||
|
2
.github/workflows/validate-header-guards.yml
vendored
2
.github/workflows/validate-header-guards.yml
vendored
@@ -5,7 +5,7 @@ on: [push, pull_request]
|
|||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
# Set the type of machine to run on
|
# Set the type of machine to run on
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Checkout source code
|
- name: Checkout source code
|
||||||
|
18
.github/workflows/windows-simple-builds.yml
vendored
18
.github/workflows/windows-simple-builds.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: Windows builds (basic)
|
name: Windows Builds (Basic)
|
||||||
|
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
@@ -7,8 +7,9 @@ jobs:
|
|||||||
name: ${{matrix.os}}, ${{matrix.std}}, ${{matrix.build_type}}, ${{matrix.platform}}
|
name: ${{matrix.os}}, ${{matrix.std}}, ${{matrix.build_type}}, ${{matrix.platform}}
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [windows-2019, windows-2022]
|
os: [windows-2019, windows-2022, windows-2025]
|
||||||
platform: [Win32, x64]
|
platform: [Win32, x64]
|
||||||
build_type: [Debug, Release]
|
build_type: [Debug, Release]
|
||||||
std: [14, 17]
|
std: [14, 17]
|
||||||
@@ -16,22 +17,15 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Configure build
|
- name: Configure build
|
||||||
working-directory: ${{runner.workspace}}
|
|
||||||
run: |
|
run: |
|
||||||
cmake -S $Env:GITHUB_WORKSPACE `
|
cmake --preset all-tests `
|
||||||
-B ${{runner.workspace}}/build `
|
|
||||||
-DCMAKE_CXX_STANDARD=${{matrix.std}} `
|
|
||||||
-A ${{matrix.platform}} `
|
-A ${{matrix.platform}} `
|
||||||
--preset all-tests
|
-DCMAKE_CXX_STANDARD=${{matrix.std}} `
|
||||||
|
|
||||||
- name: Build tests
|
- name: Build tests
|
||||||
working-directory: ${{runner.workspace}}
|
|
||||||
run: cmake --build build --config ${{matrix.build_type}} --parallel %NUMBER_OF_PROCESSORS%
|
run: cmake --build build --config ${{matrix.build_type}} --parallel %NUMBER_OF_PROCESSORS%
|
||||||
shell: cmd
|
shell: cmd
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
working-directory: ${{runner.workspace}}/build
|
run: ctest --test-dir build -C ${{matrix.build_type}} -j %NUMBER_OF_PROCESSORS% --output-on-failure
|
||||||
env:
|
|
||||||
CTEST_OUTPUT_ON_FAILURE: 1
|
|
||||||
run: ctest -C ${{matrix.build_type}} -j %NUMBER_OF_PROCESSORS%
|
|
||||||
shell: cmd
|
shell: cmd
|
||||||
|
@@ -56,6 +56,8 @@ expand_template(
|
|||||||
"#cmakedefine CATCH_CONFIG_WCHAR": "",
|
"#cmakedefine CATCH_CONFIG_WCHAR": "",
|
||||||
"#cmakedefine CATCH_CONFIG_WINDOWS_CRTDBG": "",
|
"#cmakedefine CATCH_CONFIG_WINDOWS_CRTDBG": "",
|
||||||
"#cmakedefine CATCH_CONFIG_WINDOWS_SEH": "",
|
"#cmakedefine CATCH_CONFIG_WINDOWS_SEH": "",
|
||||||
|
"#cmakedefine CATCH_CONFIG_USE_BUILTIN_CONSTANT_P": "",
|
||||||
|
"#cmakedefine CATCH_CONFIG_NO_USE_BUILTIN_CONSTANT_P": "",
|
||||||
},
|
},
|
||||||
template = "src/catch2/catch_user_config.hpp.in",
|
template = "src/catch2/catch_user_config.hpp.in",
|
||||||
)
|
)
|
||||||
@@ -66,7 +68,7 @@ expand_template(
|
|||||||
cc_library(
|
cc_library(
|
||||||
name = "catch2_generated",
|
name = "catch2_generated",
|
||||||
hdrs = ["catch2/catch_user_config.hpp"],
|
hdrs = ["catch2/catch_user_config.hpp"],
|
||||||
include_prefix = ".", # to manipulate -I of dependenices
|
include_prefix = ".", # to manipulate -I of dependencies
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@@ -1,6 +1,5 @@
|
|||||||
@PACKAGE_INIT@
|
@PACKAGE_INIT@
|
||||||
|
|
||||||
|
|
||||||
# Avoid repeatedly including the targets
|
# Avoid repeatedly including the targets
|
||||||
if(NOT TARGET Catch2::Catch2)
|
if(NOT TARGET Catch2::Catch2)
|
||||||
# Provide path for scripts
|
# Provide path for scripts
|
||||||
|
@@ -14,7 +14,6 @@
|
|||||||
#
|
#
|
||||||
# For detailed docs look into docs/configuration.md
|
# For detailed docs look into docs/configuration.md
|
||||||
|
|
||||||
|
|
||||||
macro(AddOverridableConfigOption OptionBaseName)
|
macro(AddOverridableConfigOption OptionBaseName)
|
||||||
option(CATCH_CONFIG_${OptionBaseName} "Read docs/configuration.md for details" OFF)
|
option(CATCH_CONFIG_${OptionBaseName} "Read docs/configuration.md for details" OFF)
|
||||||
option(CATCH_CONFIG_NO_${OptionBaseName} "Read docs/configuration.md for details" OFF)
|
option(CATCH_CONFIG_NO_${OptionBaseName} "Read docs/configuration.md for details" OFF)
|
||||||
@@ -44,6 +43,7 @@ set(_OverridableOptions
|
|||||||
"WINDOWS_SEH"
|
"WINDOWS_SEH"
|
||||||
"GETENV"
|
"GETENV"
|
||||||
"EXPERIMENTAL_STATIC_ANALYSIS_SUPPORT"
|
"EXPERIMENTAL_STATIC_ANALYSIS_SUPPORT"
|
||||||
|
"USE_BUILTIN_CONSTANT_P"
|
||||||
)
|
)
|
||||||
|
|
||||||
foreach(OptionName ${_OverridableOptions})
|
foreach(OptionName ${_OverridableOptions})
|
||||||
|
@@ -8,10 +8,10 @@
|
|||||||
|
|
||||||
include(CheckCXXCompilerFlag)
|
include(CheckCXXCompilerFlag)
|
||||||
function(add_cxx_flag_if_supported_to_targets flagname targets)
|
function(add_cxx_flag_if_supported_to_targets flagname targets)
|
||||||
string(MAKE_C_IDENTIFIER ${flagname} flag_identifier )
|
string(MAKE_C_IDENTIFIER ${flagname} flag_identifier)
|
||||||
check_cxx_compiler_flag("${flagname}" HAVE_FLAG_${flag_identifier})
|
check_cxx_compiler_flag("${flagname}" HAVE_FLAG_${flag_identifier})
|
||||||
|
|
||||||
if (HAVE_FLAG_${flag_identifier})
|
if(HAVE_FLAG_${flag_identifier})
|
||||||
foreach(target ${targets})
|
foreach(target ${targets})
|
||||||
target_compile_options(${target} PRIVATE ${flagname})
|
target_compile_options(${target} PRIVATE ${flagname})
|
||||||
endforeach()
|
endforeach()
|
||||||
@@ -24,25 +24,24 @@ function(add_warnings_to_targets targets)
|
|||||||
LIST(LENGTH targets TARGETS_LEN)
|
LIST(LENGTH targets TARGETS_LEN)
|
||||||
# For now we just assume 2 possibilities: msvc and msvc-like compilers,
|
# For now we just assume 2 possibilities: msvc and msvc-like compilers,
|
||||||
# and other.
|
# and other.
|
||||||
if (MSVC)
|
if(MSVC)
|
||||||
foreach(target ${targets})
|
foreach(target ${targets})
|
||||||
# Force MSVC to consider everything as encoded in utf-8
|
# Force MSVC to consider everything as encoded in utf-8
|
||||||
target_compile_options( ${target} PRIVATE /utf-8 )
|
target_compile_options(${target} PRIVATE /utf-8)
|
||||||
# Enable Werror equivalent
|
# Enable Werror equivalent
|
||||||
if (CATCH_ENABLE_WERROR)
|
if(CATCH_ENABLE_WERROR)
|
||||||
target_compile_options( ${target} PRIVATE /WX )
|
target_compile_options(${target} PRIVATE /WX)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# MSVC is currently handled specially
|
# MSVC is currently handled specially
|
||||||
if ( CMAKE_CXX_COMPILER_ID MATCHES "MSVC" )
|
if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC")
|
||||||
STRING(REGEX REPLACE "/W[0-9]" "/W4" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) # override default warning level
|
STRING(REGEX REPLACE "/W[0-9]" "/W4" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) # override default warning level
|
||||||
target_compile_options( ${target} PRIVATE /w44265 /w44061 /w44062 /w45038 )
|
target_compile_options(${target} PRIVATE /w44265 /w44061 /w44062 /w45038)
|
||||||
endif()
|
endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (NOT MSVC)
|
if(NOT MSVC)
|
||||||
set(CHECKED_WARNING_FLAGS
|
set(CHECKED_WARNING_FLAGS
|
||||||
"-Wabsolute-value"
|
"-Wabsolute-value"
|
||||||
"-Wall"
|
"-Wall"
|
||||||
@@ -103,10 +102,10 @@ function(add_warnings_to_targets targets)
|
|||||||
add_cxx_flag_if_supported_to_targets(${warning} "${targets}")
|
add_cxx_flag_if_supported_to_targets(${warning} "${targets}")
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
if (CATCH_ENABLE_WERROR)
|
if(CATCH_ENABLE_WERROR)
|
||||||
foreach(target ${targets})
|
foreach(target ${targets})
|
||||||
# Enable Werror equivalent
|
# Enable Werror equivalent
|
||||||
target_compile_options( ${target} PRIVATE -Werror )
|
target_compile_options(${target} PRIVATE -Werror)
|
||||||
endforeach()
|
endforeach()
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
cmake_minimum_required(VERSION 3.10)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
# detect if Catch is being bundled,
|
# detect if Catch is being bundled,
|
||||||
# disable testsuite in that case
|
# disable testsuite in that case
|
||||||
@@ -8,6 +8,8 @@ else()
|
|||||||
set(NOT_SUBPROJECT OFF)
|
set(NOT_SUBPROJECT OFF)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
||||||
|
|
||||||
option(CATCH_INSTALL_DOCS "Install documentation alongside library" ON)
|
option(CATCH_INSTALL_DOCS "Install documentation alongside library" ON)
|
||||||
option(CATCH_INSTALL_EXTRAS "Install extras (CMake scripts, debugger helpers) alongside library" ON)
|
option(CATCH_INSTALL_EXTRAS "Install extras (CMake scripts, debugger helpers) alongside library" ON)
|
||||||
option(CATCH_DEVELOPMENT_BUILD "Build tests, enable warnings, enable Werror, etc" OFF)
|
option(CATCH_DEVELOPMENT_BUILD "Build tests, enable warnings, enable Werror, etc" OFF)
|
||||||
@@ -24,30 +26,26 @@ cmake_dependent_option(CATCH_BUILD_SURROGATES "Enable generating and building su
|
|||||||
cmake_dependent_option(CATCH_ENABLE_CONFIGURE_TESTS "Enable CMake configuration tests. WARNING: VERY EXPENSIVE" OFF "CATCH_DEVELOPMENT_BUILD" OFF)
|
cmake_dependent_option(CATCH_ENABLE_CONFIGURE_TESTS "Enable CMake configuration tests. WARNING: VERY EXPENSIVE" OFF "CATCH_DEVELOPMENT_BUILD" OFF)
|
||||||
cmake_dependent_option(CATCH_ENABLE_CMAKE_HELPER_TESTS "Enable CMake helper tests. WARNING: VERY EXPENSIVE" OFF "CATCH_DEVELOPMENT_BUILD" OFF)
|
cmake_dependent_option(CATCH_ENABLE_CMAKE_HELPER_TESTS "Enable CMake helper tests. WARNING: VERY EXPENSIVE" OFF "CATCH_DEVELOPMENT_BUILD" OFF)
|
||||||
|
|
||||||
|
|
||||||
# Catch2's build breaks if done in-tree. You probably should not build
|
# Catch2's build breaks if done in-tree. You probably should not build
|
||||||
# things in tree anyway, but we can allow projects that include Catch2
|
# things in tree anyway, but we can allow projects that include Catch2
|
||||||
# as a subproject to build in-tree as long as it is not in our tree.
|
# as a subproject to build in-tree as long as it is not in our tree.
|
||||||
if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
|
if(CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
|
||||||
message(FATAL_ERROR "Building in-source is not supported! Create a build dir and remove ${CMAKE_SOURCE_DIR}/CMakeCache.txt")
|
message(FATAL_ERROR "Building in-source is not supported! Create a build dir and remove ${CMAKE_SOURCE_DIR}/CMakeCache.txt")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
project(Catch2
|
project(Catch2
|
||||||
VERSION 3.7.1 # CML version placeholder, don't delete
|
VERSION 3.8.1 # CML version placeholder, don't delete
|
||||||
LANGUAGES CXX
|
LANGUAGES CXX
|
||||||
# HOMEPAGE_URL is not supported until CMake version 3.12, which
|
HOMEPAGE_URL "https://github.com/catchorg/Catch2"
|
||||||
# we do not target yet.
|
|
||||||
# HOMEPAGE_URL "https://github.com/catchorg/Catch2"
|
|
||||||
DESCRIPTION "A modern, C++-native, unit test framework."
|
DESCRIPTION "A modern, C++-native, unit test framework."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
# Provide path for scripts. We first add path to the scripts we don't use,
|
# Provide path for scripts. We first add path to the scripts we don't use,
|
||||||
# but projects including us might, and set the path up to parent scope.
|
# but projects including us might, and set the path up to parent scope.
|
||||||
# Then we also add path that we use to configure the project, but is of
|
# Then we also add path that we use to configure the project, but is of
|
||||||
# no use to top level projects.
|
# no use to top level projects.
|
||||||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/extras")
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/extras")
|
||||||
if (NOT NOT_SUBPROJECT)
|
if(NOT NOT_SUBPROJECT)
|
||||||
set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" PARENT_SCOPE)
|
set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" PARENT_SCOPE)
|
||||||
endif()
|
endif()
|
||||||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/CMake")
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/CMake")
|
||||||
@@ -71,7 +69,6 @@ if(CATCH_TEST_USE_WMAIN)
|
|||||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /ENTRY:wmainCRTStartup")
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /ENTRY:wmainCRTStartup")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
# Basic paths
|
# Basic paths
|
||||||
set(CATCH_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
set(CATCH_DIR ${CMAKE_CURRENT_SOURCE_DIR})
|
||||||
set(SOURCES_DIR ${CATCH_DIR}/src/catch2)
|
set(SOURCES_DIR ${CATCH_DIR}/src/catch2)
|
||||||
@@ -81,34 +78,38 @@ set(SELF_TEST_DIR ${CATCH_DIR}/tests/SelfTest)
|
|||||||
add_subdirectory(src)
|
add_subdirectory(src)
|
||||||
|
|
||||||
# Build tests only if requested
|
# Build tests only if requested
|
||||||
if (BUILD_TESTING AND CATCH_BUILD_TESTING AND NOT_SUBPROJECT)
|
if(BUILD_TESTING AND CATCH_BUILD_TESTING AND NOT_SUBPROJECT)
|
||||||
find_package(PythonInterp 3 REQUIRED)
|
find_package(PythonInterp 3 REQUIRED)
|
||||||
if (NOT PYTHONINTERP_FOUND)
|
if(NOT PYTHONINTERP_FOUND)
|
||||||
message(FATAL_ERROR "Python not found, but required for tests")
|
message(FATAL_ERROR "Python not found, but required for tests")
|
||||||
endif()
|
endif()
|
||||||
|
set(CMAKE_FOLDER "tests")
|
||||||
add_subdirectory(tests)
|
add_subdirectory(tests)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(CATCH_BUILD_EXAMPLES)
|
if(CATCH_BUILD_EXAMPLES)
|
||||||
|
set(CMAKE_FOLDER "Examples")
|
||||||
add_subdirectory(examples)
|
add_subdirectory(examples)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(CATCH_BUILD_EXTRA_TESTS)
|
if(CATCH_BUILD_EXTRA_TESTS)
|
||||||
|
set(CMAKE_FOLDER "tests/ExtraTests")
|
||||||
add_subdirectory(tests/ExtraTests)
|
add_subdirectory(tests/ExtraTests)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(CATCH_BUILD_FUZZERS)
|
if(CATCH_BUILD_FUZZERS)
|
||||||
|
set(CMAKE_FOLDER "fuzzing")
|
||||||
add_subdirectory(fuzzing)
|
add_subdirectory(fuzzing)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (CATCH_DEVELOPMENT_BUILD)
|
if(CATCH_DEVELOPMENT_BUILD)
|
||||||
add_warnings_to_targets("${CATCH_WARNING_TARGETS}")
|
add_warnings_to_targets("${CATCH_WARNING_TARGETS}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Only perform the installation steps when Catch is not being used as
|
# Only perform the installation steps when Catch is not being used as
|
||||||
# a subproject via `add_subdirectory`, or the destinations will break,
|
# a subproject via `add_subdirectory`, or the destinations will break,
|
||||||
# see https://github.com/catchorg/Catch2/issues/1373
|
# see https://github.com/catchorg/Catch2/issues/1373
|
||||||
if (NOT_SUBPROJECT)
|
if(NOT_SUBPROJECT)
|
||||||
configure_package_config_file(
|
configure_package_config_file(
|
||||||
${CMAKE_CURRENT_LIST_DIR}/CMake/Catch2Config.cmake.in
|
${CMAKE_CURRENT_LIST_DIR}/CMake/Catch2Config.cmake.in
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/Catch2Config.cmake
|
${CMAKE_CURRENT_BINARY_DIR}/Catch2Config.cmake
|
||||||
@@ -187,15 +188,7 @@ if (NOT_SUBPROJECT)
|
|||||||
${PKGCONFIG_INSTALL_DIR}
|
${PKGCONFIG_INSTALL_DIR}
|
||||||
)
|
)
|
||||||
|
|
||||||
# CPack/CMake started taking the package version from project version 3.12
|
|
||||||
# So we need to set the version manually for older CMake versions
|
|
||||||
if(${CMAKE_VERSION} VERSION_LESS "3.12.0")
|
|
||||||
set(CPACK_PACKAGE_VERSION ${PROJECT_VERSION})
|
|
||||||
endif()
|
|
||||||
|
|
||||||
set(CPACK_PACKAGE_CONTACT "https://github.com/catchorg/Catch2/")
|
set(CPACK_PACKAGE_CONTACT "https://github.com/catchorg/Catch2/")
|
||||||
|
|
||||||
|
include(CPack)
|
||||||
include( CPack )
|
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
@@ -3,9 +3,14 @@
|
|||||||
"configurePresets": [
|
"configurePresets": [
|
||||||
{
|
{
|
||||||
"name": "basic-tests",
|
"name": "basic-tests",
|
||||||
|
"binaryDir": "build",
|
||||||
|
"installDir": "build/install",
|
||||||
"displayName": "Basic development build",
|
"displayName": "Basic development build",
|
||||||
"description": "Enables development build with basic tests that are cheap to build and run",
|
"description": "Enables development build with basic tests that are cheap to build and run",
|
||||||
"cacheVariables": {
|
"cacheVariables": {
|
||||||
|
"CMAKE_CXX_EXTENSIONS": "OFF",
|
||||||
|
"CMAKE_CXX_STANDARD_REQUIRED": "ON",
|
||||||
|
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
|
||||||
"CATCH_DEVELOPMENT_BUILD": "ON"
|
"CATCH_DEVELOPMENT_BUILD": "ON"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
11
MAINTAINERS.md
Normal file
11
MAINTAINERS.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<a id="top"></a>
|
||||||
|
# Catch2 Maintainers
|
||||||
|
|
||||||
|
## Current
|
||||||
|
|
||||||
|
* Chris Thrasher ([@christhrasher](https://github.com/ChrisThrasher)), gpg key: 56FB686C9DFC8E2C
|
||||||
|
* Martin Hořeňovský ([@horenmar](https://github.com/horenmar)), gpg key: E29C46F3B8A7502860793B7DECC9C20E314B2360
|
||||||
|
|
||||||
|
## Retired
|
||||||
|
|
||||||
|
* Phil Nash ([@philsquared](https://github.com/philsquared))
|
@@ -1,3 +1,4 @@
|
|||||||
module(name = "catch2")
|
module(name = "catch2")
|
||||||
|
|
||||||
bazel_dep(name = "bazel_skylib", version = "1.7.1")
|
bazel_dep(name = "bazel_skylib", version = "1.7.1")
|
||||||
|
bazel_dep(name = "rules_cc", version = "0.0.17")
|
||||||
|
@@ -1,16 +0,0 @@
|
|||||||
workspace(name = "catch2")
|
|
||||||
|
|
||||||
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
||||||
|
|
||||||
http_archive(
|
|
||||||
name = "bazel_skylib",
|
|
||||||
sha256 = "bc283cdfcd526a52c3201279cda4bc298652efa898b10b4db0837dc51652756f",
|
|
||||||
urls = [
|
|
||||||
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz",
|
|
||||||
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz",
|
|
||||||
],
|
|
||||||
)
|
|
||||||
|
|
||||||
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
|
|
||||||
|
|
||||||
bazel_skylib_workspace()
|
|
@@ -81,12 +81,11 @@ to your CMake module path.
|
|||||||
|
|
||||||
`Catch.cmake` provides function `catch_discover_tests` to get tests from
|
`Catch.cmake` provides function `catch_discover_tests` to get tests from
|
||||||
a target. This function works by running the resulting executable with
|
a target. This function works by running the resulting executable with
|
||||||
`--list-test-names-only` flag, and then parsing the output to find all
|
`--list-test` flag, and then parsing the output to find all existing tests.
|
||||||
existing tests.
|
|
||||||
|
|
||||||
#### Usage
|
#### Usage
|
||||||
```cmake
|
```cmake
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
project(baz LANGUAGES CXX VERSION 0.0.1)
|
project(baz LANGUAGES CXX VERSION 0.0.1)
|
||||||
|
|
||||||
@@ -128,6 +127,8 @@ catch_discover_tests(target
|
|||||||
[OUTPUT_PREFIX prefix]
|
[OUTPUT_PREFIX prefix]
|
||||||
[OUTPUT_SUFFIX suffix]
|
[OUTPUT_SUFFIX suffix]
|
||||||
[DISCOVERY_MODE <POST_BUILD|PRE_TEST>]
|
[DISCOVERY_MODE <POST_BUILD|PRE_TEST>]
|
||||||
|
[SKIP_IS_FAILURE]
|
||||||
|
[ADD_TAGS_AS_LABELS]
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -211,6 +212,15 @@ execution (useful e.g. in cross-compilation environments).
|
|||||||
calling ``catch_discover_tests``. This provides a mechanism for globally
|
calling ``catch_discover_tests``. This provides a mechanism for globally
|
||||||
selecting a preferred test discovery behavior.
|
selecting a preferred test discovery behavior.
|
||||||
|
|
||||||
|
* `SKIP_IS_FAILURE`
|
||||||
|
|
||||||
|
Skipped tests will be marked as failed instead.
|
||||||
|
|
||||||
|
* `ADD_TAGS_AS_LABELS`
|
||||||
|
|
||||||
|
Add the tags from tests as labels to CTest.
|
||||||
|
|
||||||
|
|
||||||
### `ParseAndAddCatchTests.cmake`
|
### `ParseAndAddCatchTests.cmake`
|
||||||
|
|
||||||
⚠ This script is [deprecated](https://github.com/catchorg/Catch2/pull/2120)
|
⚠ This script is [deprecated](https://github.com/catchorg/Catch2/pull/2120)
|
||||||
@@ -229,7 +239,7 @@ parsed are *silently ignored*.
|
|||||||
#### Usage
|
#### Usage
|
||||||
|
|
||||||
```cmake
|
```cmake
|
||||||
cmake_minimum_required(VERSION 3.5)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
|
||||||
project(baz LANGUAGES CXX VERSION 0.0.1)
|
project(baz LANGUAGES CXX VERSION 0.0.1)
|
||||||
|
|
||||||
|
@@ -123,7 +123,7 @@ specs. You can:
|
|||||||
This allows test cases that are tagged with **either** "[some-tag]" **or**
|
This allows test cases that are tagged with **either** "[some-tag]" **or**
|
||||||
"[other-tag]". A test case with both will obviously also pass the filter.
|
"[other-tag]". A test case with both will obviously also pass the filter.
|
||||||
|
|
||||||
Note that commas take precendence over simple concatenation. This means
|
Note that commas take precedence over simple concatenation. This means
|
||||||
that `[a][b],[c]` accepts tests that are tagged with either both "[a]" and
|
that `[a][b],[c]` accepts tests that are tagged with either both "[a]" and
|
||||||
"[b]", or tests that are tagged with just "[c]".
|
"[b]", or tests that are tagged with just "[c]".
|
||||||
|
|
||||||
|
@@ -158,11 +158,14 @@ by using `_NO_` in the macro, e.g. `CATCH_CONFIG_NO_CPP17_UNCAUGHT_EXCEPTIONS`.
|
|||||||
CATCH_CONFIG_ANDROID_LOGWRITE // Use android's logging system for debug output
|
CATCH_CONFIG_ANDROID_LOGWRITE // Use android's logging system for debug output
|
||||||
CATCH_CONFIG_GLOBAL_NEXTAFTER // Use nextafter{,f,l} instead of std::nextafter
|
CATCH_CONFIG_GLOBAL_NEXTAFTER // Use nextafter{,f,l} instead of std::nextafter
|
||||||
CATCH_CONFIG_GETENV // System has a working `getenv`
|
CATCH_CONFIG_GETENV // System has a working `getenv`
|
||||||
|
CATCH_CONFIG_USE_BUILTIN_CONSTANT_P // Use __builtin_constant_p to trigger warnings
|
||||||
|
|
||||||
> [`CATCH_CONFIG_ANDROID_LOGWRITE`](https://github.com/catchorg/Catch2/issues/1743) and [`CATCH_CONFIG_GLOBAL_NEXTAFTER`](https://github.com/catchorg/Catch2/pull/1739) were introduced in Catch2 2.10.0
|
> [`CATCH_CONFIG_ANDROID_LOGWRITE`](https://github.com/catchorg/Catch2/issues/1743) and [`CATCH_CONFIG_GLOBAL_NEXTAFTER`](https://github.com/catchorg/Catch2/pull/1739) were introduced in Catch2 2.10.0
|
||||||
|
|
||||||
> `CATCH_CONFIG_GETENV` was [introduced](https://github.com/catchorg/Catch2/pull/2562) in Catch2 3.2.0
|
> `CATCH_CONFIG_GETENV` was [introduced](https://github.com/catchorg/Catch2/pull/2562) in Catch2 3.2.0
|
||||||
|
|
||||||
|
> `CATCH_CONFIG_USE_BUILTIN_CONSTANT_P` was introduced in Catch2 vX.Y.Z
|
||||||
|
|
||||||
Currently Catch enables `CATCH_CONFIG_WINDOWS_SEH` only when compiled with MSVC, because some versions of MinGW do not have the necessary Win32 API support.
|
Currently Catch enables `CATCH_CONFIG_WINDOWS_SEH` only when compiled with MSVC, because some versions of MinGW do not have the necessary Win32 API support.
|
||||||
|
|
||||||
`CATCH_CONFIG_POSIX_SIGNALS` is on by default, except when Catch is compiled under `Cygwin`, where it is disabled by default (but can be force-enabled by defining `CATCH_CONFIG_POSIX_SIGNALS`).
|
`CATCH_CONFIG_POSIX_SIGNALS` is on by default, except when Catch is compiled under `Cygwin`, where it is disabled by default (but can be force-enabled by defining `CATCH_CONFIG_POSIX_SIGNALS`).
|
||||||
@@ -183,6 +186,12 @@ With the exception of `CATCH_CONFIG_EXPERIMENTAL_REDIRECT`,
|
|||||||
these toggles can be disabled by using `_NO_` form of the toggle,
|
these toggles can be disabled by using `_NO_` form of the toggle,
|
||||||
e.g. `CATCH_CONFIG_NO_WINDOWS_SEH`.
|
e.g. `CATCH_CONFIG_NO_WINDOWS_SEH`.
|
||||||
|
|
||||||
|
`CATCH_CONFIG_USE_BUILTIN_CONSTANT_P` is ON by default for Clang and GCC
|
||||||
|
(but as far as possible, not for other compilers masquerading for these
|
||||||
|
two). However, it can cause bugs where the enclosed code is evaluated, even
|
||||||
|
though it should not be, e.g. in [#2925](https://github.com/catchorg/Catch2/issues/2925).
|
||||||
|
|
||||||
|
|
||||||
### `CATCH_CONFIG_FAST_COMPILE`
|
### `CATCH_CONFIG_FAST_COMPILE`
|
||||||
This compile-time flag speeds up compilation of assertion macros by ~20%,
|
This compile-time flag speeds up compilation of assertion macros by ~20%,
|
||||||
by disabling the generation of assertion-local try-catch blocks for
|
by disabling the generation of assertion-local try-catch blocks for
|
||||||
|
@@ -21,7 +21,10 @@ The "Generators" `TEST_CASE` will be entered 3 times, and the value of
|
|||||||
`i` will be 1, 3, and 5 in turn. `GENERATE`s can also be used multiple
|
`i` will be 1, 3, and 5 in turn. `GENERATE`s can also be used multiple
|
||||||
times at the same scope, in which case the result will be a cartesian
|
times at the same scope, in which case the result will be a cartesian
|
||||||
product of all elements in the generators. This means that in the snippet
|
product of all elements in the generators. This means that in the snippet
|
||||||
below, the test case will be run 6 (2\*3) times.
|
below, the test case will be run 6 (2\*3) times. The `GENERATE` macro
|
||||||
|
is defined in the `catch_generators.hpp` header, so compiling
|
||||||
|
the code examples below also requires
|
||||||
|
`#include <catch2/generators/catch_generators.hpp>`.
|
||||||
|
|
||||||
```cpp
|
```cpp
|
||||||
TEST_CASE("Generators") {
|
TEST_CASE("Generators") {
|
||||||
@@ -103,7 +106,7 @@ a test case,
|
|||||||
* 2 fundamental generators
|
* 2 fundamental generators
|
||||||
* `SingleValueGenerator<T>` -- contains only single element
|
* `SingleValueGenerator<T>` -- contains only single element
|
||||||
* `FixedValuesGenerator<T>` -- contains multiple elements
|
* `FixedValuesGenerator<T>` -- contains multiple elements
|
||||||
* 5 generic generators that modify other generators
|
* 5 generic generators that modify other generators (defined in `catch2/generators/catch_generators_adapters.hpp`)
|
||||||
* `FilterGenerator<T, Predicate>` -- filters out elements from a generator
|
* `FilterGenerator<T, Predicate>` -- filters out elements from a generator
|
||||||
for which the predicate returns "false"
|
for which the predicate returns "false"
|
||||||
* `TakeGenerator<T>` -- takes first `n` elements from a generator
|
* `TakeGenerator<T>` -- takes first `n` elements from a generator
|
||||||
@@ -111,11 +114,11 @@ a test case,
|
|||||||
* `MapGenerator<T, U, Func>` -- returns the result of applying `Func`
|
* `MapGenerator<T, U, Func>` -- returns the result of applying `Func`
|
||||||
on elements from a different generator
|
on elements from a different generator
|
||||||
* `ChunkGenerator<T>` -- returns chunks (inside `std::vector`) of n elements from a generator
|
* `ChunkGenerator<T>` -- returns chunks (inside `std::vector`) of n elements from a generator
|
||||||
* 4 specific purpose generators
|
* 4 specific purpose generators (defined in `catch2/generators/catch_generators_random.hpp`)
|
||||||
* `RandomIntegerGenerator<Integral>` -- generates random Integrals from range
|
* `RandomIntegerGenerator<Integral>` -- generates random Integrals from range
|
||||||
* `RandomFloatGenerator<Float>` -- generates random Floats from range
|
* `RandomFloatGenerator<Float>` -- generates random Floats from range
|
||||||
* `RangeGenerator<T>(first, last)` -- generates all values inside a `[first, last)` arithmetic range
|
* `RangeGenerator<T>(first, last)` -- generates all values inside a `[first, last)` arithmetic range (defined in `catch2/generators/catch_generators_range.hpp`)
|
||||||
* `IteratorGenerator<T>` -- copies and returns values from an iterator range
|
* `IteratorGenerator<T>` -- copies and returns values from an iterator range (defined in `catch2/generators/catch_generators_range.hpp`)
|
||||||
|
|
||||||
> `ChunkGenerator<T>`, `RandomIntegerGenerator<Integral>`, `RandomFloatGenerator<Float>` and `RangeGenerator<T>` were introduced in Catch2 2.7.0.
|
> `ChunkGenerator<T>`, `RandomIntegerGenerator<Integral>`, `RandomFloatGenerator<Float>` and `RangeGenerator<T>` were introduced in Catch2 2.7.0.
|
||||||
|
|
||||||
@@ -216,8 +219,8 @@ For floating point generators, the situation is much more complex.
|
|||||||
Generally Catch2 only promises reproducibility (or even just correctness!)
|
Generally Catch2 only promises reproducibility (or even just correctness!)
|
||||||
on platforms that obey the IEEE-754 standard. Furthermore, reproducibility
|
on platforms that obey the IEEE-754 standard. Furthermore, reproducibility
|
||||||
only applies between binaries that perform floating point math in the
|
only applies between binaries that perform floating point math in the
|
||||||
same way, e.g. if you compile a binary targetting the x87 FPU and another
|
same way, e.g. if you compile a binary targeting the x87 FPU and another
|
||||||
one targetting SSE2 for floating point math, their results will vary.
|
one targeting SSE2 for floating point math, their results will vary.
|
||||||
Similarly, binaries compiled with compiler flags that relax the IEEE-754
|
Similarly, binaries compiled with compiler flags that relax the IEEE-754
|
||||||
adherence, e.g. `-ffast-math`, might provide different results than those
|
adherence, e.g. `-ffast-math`, might provide different results than those
|
||||||
compiled for strict IEEE-754 adherence.
|
compiled for strict IEEE-754 adherence.
|
||||||
|
@@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
# Release notes
|
# Release notes
|
||||||
**Contents**<br>
|
**Contents**<br>
|
||||||
|
[3.8.1](#381)<br>
|
||||||
|
[3.8.0](#380)<br>
|
||||||
[3.7.1](#371)<br>
|
[3.7.1](#371)<br>
|
||||||
[3.7.0](#370)<br>
|
[3.7.0](#370)<br>
|
||||||
[3.6.0](#360)<br>
|
[3.6.0](#360)<br>
|
||||||
@@ -65,6 +67,38 @@
|
|||||||
[Even Older versions](#even-older-versions)<br>
|
[Even Older versions](#even-older-versions)<br>
|
||||||
|
|
||||||
|
|
||||||
|
## 3.8.1
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
* Fixed bug where catch_discover_tests fails when no TEST_CASEs are present (#2962)
|
||||||
|
* Fixed Clang 19 -Wc++20-extensions warning (#2968)
|
||||||
|
|
||||||
|
|
||||||
|
## 3.8.0
|
||||||
|
|
||||||
|
### Improvements
|
||||||
|
* Added `std::initializer_list` overloads for `(Unordered)RangeEquals` matcher (#2915, #2919)
|
||||||
|
* Added explicit casts to silence GCC's `Wconversion` (#2875)
|
||||||
|
* Made the use of `builtin_constant_p` tricks in assertion macros configurable (#2925)
|
||||||
|
* It is used to prod GCC-like compilers into providing warnings for the asserted expressions, but the compilers miscompile it annoyingly often.
|
||||||
|
* Cleaned out Clang-Tidy's `performance-enum-size` warnings
|
||||||
|
* Added support for using `from_range` generator with iterators with `value_type = const T` (#2926)
|
||||||
|
* This is not correct `value_type` typedef, but it is used in the wild and the change does not make the code meaningfully worse.
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
* Fixed crash when stringifying pre-1970 (epoch) dates on Windows (#2944)
|
||||||
|
|
||||||
|
### Miscellaneous
|
||||||
|
* Fixes and improvements for `catch_discover_tests` CMake helper
|
||||||
|
* Removed redundant `CTEST_FILE` param when creating the indirection file for `PRE_TEST` discovery mode (#2936)
|
||||||
|
* Rewrote the test discovery logic to use output from the JSON reporter
|
||||||
|
* This means that `catch_discover_tests` now requires CMake 3.19 or newer
|
||||||
|
* Added `ADD_TAGS_AS_LABELS` option. If specified, each CTest test will be labeled with corresponding Catch2's test tag
|
||||||
|
* Bumped up the minimum required CMake version to build Catch2 to 3.16
|
||||||
|
* Meson build now provides option to avoid installing Catch2
|
||||||
|
* Bazel build is moved to Bzlmod.
|
||||||
|
|
||||||
|
|
||||||
## 3.7.1
|
## 3.7.1
|
||||||
|
|
||||||
### Improvements
|
### Improvements
|
||||||
@@ -141,7 +175,7 @@
|
|||||||
### Improvements
|
### Improvements
|
||||||
* Reintroduced support for GCC 5 and 6 (#2836)
|
* Reintroduced support for GCC 5 and 6 (#2836)
|
||||||
* As with VS2017, if they start causing trouble again, they will be dropped again.
|
* As with VS2017, if they start causing trouble again, they will be dropped again.
|
||||||
* Added workaround for targetting newest MacOS (Sonoma) using GCC (#2837, #2839)
|
* Added workaround for targeting newest MacOS (Sonoma) using GCC (#2837, #2839)
|
||||||
* `CATCH_CONFIG_DEFAULT_REPORTER` can now be an arbitrary reporter spec
|
* `CATCH_CONFIG_DEFAULT_REPORTER` can now be an arbitrary reporter spec
|
||||||
* Previously it could only be a plain reporter name, so it was impossible to compile in custom arguments to the reporter.
|
* Previously it could only be a plain reporter name, so it was impossible to compile in custom arguments to the reporter.
|
||||||
* Improved performance of generating 64bit random integers by 20+%
|
* Improved performance of generating 64bit random integers by 20+%
|
||||||
|
@@ -130,7 +130,7 @@ TEST_CASE_PERSISTENT_FIXTURE( MyFixture, "Tests with MyFixture" ) {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
This example demonstates two possible use-cases of this fixture type:
|
This example demonstrates two possible use-cases of this fixture type:
|
||||||
1. Improve test run times by reducing the amount of expensive and
|
1. Improve test run times by reducing the amount of expensive and
|
||||||
redundant setup and tear-down required.
|
redundant setup and tear-down required.
|
||||||
2. Reusing results from the previous partial run, in the current
|
2. Reusing results from the previous partial run, in the current
|
||||||
|
@@ -75,7 +75,7 @@ CATCH_TRANSLATE_EXCEPTION( MyType const& ex ) {
|
|||||||
|
|
||||||
Enums that already have a `<<` overload for `std::ostream` will convert to strings as expected.
|
Enums that already have a `<<` overload for `std::ostream` will convert to strings as expected.
|
||||||
If you only need to convert enums to strings for test reporting purposes you can provide a `StringMaker` specialisations as any other type.
|
If you only need to convert enums to strings for test reporting purposes you can provide a `StringMaker` specialisations as any other type.
|
||||||
However, as a convenience, Catch provides the `REGISTER_ENUM` helper macro that will generate the `StringMaker` specialisation for you with minimal code.
|
However, as a convenience, Catch provides the `CATCH_REGISTER_ENUM` helper macro that will generate the `StringMaker` specialisation for you with minimal code.
|
||||||
Simply provide it the (qualified) enum name, followed by all the enum values, and you're done!
|
Simply provide it the (qualified) enum name, followed by all the enum values, and you're done!
|
||||||
|
|
||||||
E.g.
|
E.g.
|
||||||
|
@@ -1,18 +1,16 @@
|
|||||||
cmake_minimum_required( VERSION 3.10 )
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
project(Catch2Examples LANGUAGES CXX)
|
||||||
project( Catch2Examples LANGUAGES CXX )
|
|
||||||
|
|
||||||
message( STATUS "Examples included" )
|
|
||||||
|
|
||||||
|
message(STATUS "Examples included")
|
||||||
|
|
||||||
# Some one-offs first:
|
# Some one-offs first:
|
||||||
# 1) Tests and main in one file
|
# 1) Tests and main in one file
|
||||||
add_executable( 010-TestCase
|
add_executable(010-TestCase
|
||||||
010-TestCase.cpp
|
010-TestCase.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
# 2) Tests and main across two files
|
# 2) Tests and main across two files
|
||||||
add_executable( 020-MultiFile
|
add_executable(020-MultiFile
|
||||||
020-TestCase-1.cpp
|
020-TestCase-1.cpp
|
||||||
020-TestCase-2.cpp
|
020-TestCase-2.cpp
|
||||||
)
|
)
|
||||||
@@ -24,7 +22,7 @@ target_link_libraries(231-Cfg_OutputStreams Catch2_buildall_interface)
|
|||||||
target_compile_definitions(231-Cfg_OutputStreams PUBLIC CATCH_CONFIG_NOSTDOUT)
|
target_compile_definitions(231-Cfg_OutputStreams PUBLIC CATCH_CONFIG_NOSTDOUT)
|
||||||
|
|
||||||
# These examples use the standard separate compilation
|
# These examples use the standard separate compilation
|
||||||
set( SOURCES_IDIOMATIC_EXAMPLES
|
set(SOURCES_IDIOMATIC_EXAMPLES
|
||||||
030-Asn-Require-Check.cpp
|
030-Asn-Require-Check.cpp
|
||||||
100-Fix-Section.cpp
|
100-Fix-Section.cpp
|
||||||
110-Fix-ClassFixture.cpp
|
110-Fix-ClassFixture.cpp
|
||||||
@@ -39,12 +37,11 @@ set( SOURCES_IDIOMATIC_EXAMPLES
|
|||||||
311-Gen-CustomCapture.cpp
|
311-Gen-CustomCapture.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
string( REPLACE ".cpp" "" BASENAMES_IDIOMATIC_EXAMPLES "${SOURCES_IDIOMATIC_EXAMPLES}" )
|
string(REPLACE ".cpp" "" BASENAMES_IDIOMATIC_EXAMPLES "${SOURCES_IDIOMATIC_EXAMPLES}")
|
||||||
set( TARGETS_IDIOMATIC_EXAMPLES ${BASENAMES_IDIOMATIC_EXAMPLES} )
|
set(TARGETS_IDIOMATIC_EXAMPLES ${BASENAMES_IDIOMATIC_EXAMPLES})
|
||||||
|
|
||||||
|
foreach(name ${TARGETS_IDIOMATIC_EXAMPLES})
|
||||||
foreach( name ${TARGETS_IDIOMATIC_EXAMPLES} )
|
add_executable(${name} ${name}.cpp)
|
||||||
add_executable( ${name} ${name}.cpp )
|
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
set(ALL_EXAMPLE_TARGETS
|
set(ALL_EXAMPLE_TARGETS
|
||||||
@@ -53,10 +50,9 @@ set(ALL_EXAMPLE_TARGETS
|
|||||||
020-MultiFile
|
020-MultiFile
|
||||||
)
|
)
|
||||||
|
|
||||||
foreach( name ${ALL_EXAMPLE_TARGETS} )
|
foreach(name ${ALL_EXAMPLE_TARGETS})
|
||||||
target_link_libraries( ${name} Catch2WithMain )
|
target_link_libraries(${name} Catch2WithMain)
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
|
|
||||||
list(APPEND CATCH_WARNING_TARGETS ${ALL_EXAMPLE_TARGETS})
|
list(APPEND CATCH_WARNING_TARGETS ${ALL_EXAMPLE_TARGETS})
|
||||||
set(CATCH_WARNING_TARGETS ${CATCH_WARNING_TARGETS} PARENT_SCOPE)
|
set(CATCH_WARNING_TARGETS ${CATCH_WARNING_TARGETS} PARENT_SCOPE)
|
||||||
|
@@ -39,6 +39,7 @@ same as the Catch name; see also ``TEST_PREFIX`` and ``TEST_SUFFIX``.
|
|||||||
[OUTPUT_SUFFIX suffix]
|
[OUTPUT_SUFFIX suffix]
|
||||||
[DISCOVERY_MODE <POST_BUILD|PRE_TEST>]
|
[DISCOVERY_MODE <POST_BUILD|PRE_TEST>]
|
||||||
[SKIP_IS_FAILURE]
|
[SKIP_IS_FAILURE]
|
||||||
|
[ADD_TAGS_AS_LABELS]
|
||||||
)
|
)
|
||||||
|
|
||||||
``catch_discover_tests`` sets up a post-build command on the test executable
|
``catch_discover_tests`` sets up a post-build command on the test executable
|
||||||
@@ -148,6 +149,9 @@ same as the Catch name; see also ``TEST_PREFIX`` and ``TEST_SUFFIX``.
|
|||||||
``SKIP_IS_FAILURE``
|
``SKIP_IS_FAILURE``
|
||||||
Disables skipped test detection.
|
Disables skipped test detection.
|
||||||
|
|
||||||
|
``ADD_TAGS_AS_LABELS``
|
||||||
|
Adds all test tags as CTest labels.
|
||||||
|
|
||||||
#]=======================================================================]
|
#]=======================================================================]
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
@@ -155,12 +159,16 @@ function(catch_discover_tests TARGET)
|
|||||||
|
|
||||||
cmake_parse_arguments(
|
cmake_parse_arguments(
|
||||||
""
|
""
|
||||||
"SKIP_IS_FAILURE"
|
"SKIP_IS_FAILURE;ADD_TAGS_AS_LABELS"
|
||||||
"TEST_PREFIX;TEST_SUFFIX;WORKING_DIRECTORY;TEST_LIST;REPORTER;OUTPUT_DIR;OUTPUT_PREFIX;OUTPUT_SUFFIX;DISCOVERY_MODE"
|
"TEST_PREFIX;TEST_SUFFIX;WORKING_DIRECTORY;TEST_LIST;REPORTER;OUTPUT_DIR;OUTPUT_PREFIX;OUTPUT_SUFFIX;DISCOVERY_MODE"
|
||||||
"TEST_SPEC;EXTRA_ARGS;PROPERTIES;DL_PATHS;DL_FRAMEWORK_PATHS"
|
"TEST_SPEC;EXTRA_ARGS;PROPERTIES;DL_PATHS;DL_FRAMEWORK_PATHS"
|
||||||
${ARGN}
|
${ARGN}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if(${CMAKE_VERSION} VERSION_LESS "3.19")
|
||||||
|
message(FATAL_ERROR "This script requires JSON support from CMake version 3.19 or greater.")
|
||||||
|
endif()
|
||||||
|
|
||||||
if(NOT _WORKING_DIRECTORY)
|
if(NOT _WORKING_DIRECTORY)
|
||||||
set(_WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
|
set(_WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
|
||||||
endif()
|
endif()
|
||||||
@@ -179,7 +187,7 @@ function(catch_discover_tests TARGET)
|
|||||||
endif()
|
endif()
|
||||||
set(_DISCOVERY_MODE ${CMAKE_CATCH_DISCOVER_TESTS_DISCOVERY_MODE})
|
set(_DISCOVERY_MODE ${CMAKE_CATCH_DISCOVER_TESTS_DISCOVERY_MODE})
|
||||||
endif()
|
endif()
|
||||||
if (NOT _DISCOVERY_MODE MATCHES "^(POST_BUILD|PRE_TEST)$")
|
if(NOT _DISCOVERY_MODE MATCHES "^(POST_BUILD|PRE_TEST)$")
|
||||||
message(FATAL_ERROR "Unknown DISCOVERY_MODE: ${_DISCOVERY_MODE}")
|
message(FATAL_ERROR "Unknown DISCOVERY_MODE: ${_DISCOVERY_MODE}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@@ -196,7 +204,7 @@ function(catch_discover_tests TARGET)
|
|||||||
TARGET ${TARGET}
|
TARGET ${TARGET}
|
||||||
PROPERTY CROSSCOMPILING_EMULATOR
|
PROPERTY CROSSCOMPILING_EMULATOR
|
||||||
)
|
)
|
||||||
if (NOT _SKIP_IS_FAILURE)
|
if(NOT _SKIP_IS_FAILURE)
|
||||||
set(_PROPERTIES ${_PROPERTIES} SKIP_RETURN_CODE 4)
|
set(_PROPERTIES ${_PROPERTIES} SKIP_RETURN_CODE 4)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@@ -222,6 +230,7 @@ function(catch_discover_tests TARGET)
|
|||||||
-D "TEST_DL_PATHS=${_DL_PATHS}"
|
-D "TEST_DL_PATHS=${_DL_PATHS}"
|
||||||
-D "TEST_DL_FRAMEWORK_PATHS=${_DL_FRAMEWORK_PATHS}"
|
-D "TEST_DL_FRAMEWORK_PATHS=${_DL_FRAMEWORK_PATHS}"
|
||||||
-D "CTEST_FILE=${ctest_tests_file}"
|
-D "CTEST_FILE=${ctest_tests_file}"
|
||||||
|
-D "ADD_TAGS_AS_LABELS=${_ADD_TAGS_AS_LABELS}"
|
||||||
-P "${_CATCH_DISCOVER_TESTS_SCRIPT}"
|
-P "${_CATCH_DISCOVER_TESTS_SCRIPT}"
|
||||||
VERBATIM
|
VERBATIM
|
||||||
)
|
)
|
||||||
@@ -267,7 +276,7 @@ function(catch_discover_tests TARGET)
|
|||||||
" CTEST_FILE" " [==[" "${ctest_tests_file}" "]==]" "\n"
|
" CTEST_FILE" " [==[" "${ctest_tests_file}" "]==]" "\n"
|
||||||
" TEST_DL_PATHS" " [==[" "${_DL_PATHS}" "]==]" "\n"
|
" TEST_DL_PATHS" " [==[" "${_DL_PATHS}" "]==]" "\n"
|
||||||
" TEST_DL_FRAMEWORK_PATHS" " [==[" "${_DL_FRAMEWORK_PATHS}" "]==]" "\n"
|
" TEST_DL_FRAMEWORK_PATHS" " [==[" "${_DL_FRAMEWORK_PATHS}" "]==]" "\n"
|
||||||
" CTEST_FILE" " [==[" "${CTEST_FILE}" "]==]" "\n"
|
" ADD_TAGS_AS_LABELS" " [==[" "${_ADD_TAGS_AS_LABELS}" "]==]" "\n"
|
||||||
" )" "\n"
|
" )" "\n"
|
||||||
" endif()" "\n"
|
" endif()" "\n"
|
||||||
" include(\"${ctest_tests_file}\")" "\n"
|
" include(\"${ctest_tests_file}\")" "\n"
|
||||||
@@ -294,22 +303,10 @@ function(catch_discover_tests TARGET)
|
|||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(NOT ${CMAKE_VERSION} VERSION_LESS "3.10.0")
|
|
||||||
# Add discovered tests to directory TEST_INCLUDE_FILES
|
# Add discovered tests to directory TEST_INCLUDE_FILES
|
||||||
set_property(DIRECTORY
|
set_property(DIRECTORY
|
||||||
APPEND PROPERTY TEST_INCLUDE_FILES "${ctest_include_file}"
|
APPEND PROPERTY TEST_INCLUDE_FILES "${ctest_include_file}"
|
||||||
)
|
)
|
||||||
else()
|
|
||||||
# Add discovered tests as directory TEST_INCLUDE_FILE if possible
|
|
||||||
get_property(test_include_file_set DIRECTORY PROPERTY TEST_INCLUDE_FILE SET)
|
|
||||||
if (NOT ${test_include_file_set})
|
|
||||||
set_property(DIRECTORY
|
|
||||||
PROPERTY TEST_INCLUDE_FILE "${ctest_include_file}"
|
|
||||||
)
|
|
||||||
else()
|
|
||||||
message(FATAL_ERROR "Cannot set more than one TEST_INCLUDE_FILE")
|
|
||||||
endif()
|
|
||||||
endif()
|
|
||||||
|
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
|
@@ -22,10 +22,11 @@ function(catch_discover_tests_impl)
|
|||||||
""
|
""
|
||||||
""
|
""
|
||||||
"TEST_EXECUTABLE;TEST_WORKING_DIR;TEST_OUTPUT_DIR;TEST_OUTPUT_PREFIX;TEST_OUTPUT_SUFFIX;TEST_PREFIX;TEST_REPORTER;TEST_SPEC;TEST_SUFFIX;TEST_LIST;CTEST_FILE"
|
"TEST_EXECUTABLE;TEST_WORKING_DIR;TEST_OUTPUT_DIR;TEST_OUTPUT_PREFIX;TEST_OUTPUT_SUFFIX;TEST_PREFIX;TEST_REPORTER;TEST_SPEC;TEST_SUFFIX;TEST_LIST;CTEST_FILE"
|
||||||
"TEST_EXTRA_ARGS;TEST_PROPERTIES;TEST_EXECUTOR;TEST_DL_PATHS;TEST_DL_FRAMEWORK_PATHS"
|
"TEST_EXTRA_ARGS;TEST_PROPERTIES;TEST_EXECUTOR;TEST_DL_PATHS;TEST_DL_FRAMEWORK_PATHS;ADD_TAGS_AS_LABELS"
|
||||||
${ARGN}
|
${ARGN}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
set(add_tags "${_ADD_TAGS_AS_LABELS}")
|
||||||
set(prefix "${_TEST_PREFIX}")
|
set(prefix "${_TEST_PREFIX}")
|
||||||
set(suffix "${_TEST_SUFFIX}")
|
set(suffix "${_TEST_SUFFIX}")
|
||||||
set(spec ${_TEST_SPEC})
|
set(spec ${_TEST_SPEC})
|
||||||
@@ -72,25 +73,19 @@ function(catch_discover_tests_impl)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
execute_process(
|
execute_process(
|
||||||
COMMAND ${_TEST_EXECUTOR} "${_TEST_EXECUTABLE}" ${spec} --list-tests --verbosity quiet
|
COMMAND ${_TEST_EXECUTOR} "${_TEST_EXECUTABLE}" ${spec} --list-tests --reporter json
|
||||||
OUTPUT_VARIABLE output
|
OUTPUT_VARIABLE listing_output
|
||||||
RESULT_VARIABLE result
|
RESULT_VARIABLE result
|
||||||
WORKING_DIRECTORY "${_TEST_WORKING_DIR}"
|
WORKING_DIRECTORY "${_TEST_WORKING_DIR}"
|
||||||
)
|
)
|
||||||
if(NOT ${result} EQUAL 0)
|
if(NOT ${result} EQUAL 0)
|
||||||
message(FATAL_ERROR
|
message(FATAL_ERROR
|
||||||
"Error running test executable '${_TEST_EXECUTABLE}':\n"
|
"Error listing tests from executable '${_TEST_EXECUTABLE}':\n"
|
||||||
" Result: ${result}\n"
|
" Result: ${result}\n"
|
||||||
" Output: ${output}\n"
|
" Output: ${listing_output}\n"
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Make sure to escape ; (semicolons) in test names first, because
|
|
||||||
# that'd break the foreach loop for "Parse output" later and create
|
|
||||||
# wrongly splitted and thus failing test cases (false positives)
|
|
||||||
string(REPLACE ";" "\;" output "${output}")
|
|
||||||
string(REPLACE "\n" ";" output "${output}")
|
|
||||||
|
|
||||||
# Prepare reporter
|
# Prepare reporter
|
||||||
if(reporter)
|
if(reporter)
|
||||||
set(reporter_arg "--reporter ${reporter}")
|
set(reporter_arg "--reporter ${reporter}")
|
||||||
@@ -110,7 +105,7 @@ function(catch_discover_tests_impl)
|
|||||||
)
|
)
|
||||||
elseif(NOT ${reporter_check_result} EQUAL 0)
|
elseif(NOT ${reporter_check_result} EQUAL 0)
|
||||||
message(FATAL_ERROR
|
message(FATAL_ERROR
|
||||||
"Error running test executable '${_TEST_EXECUTABLE}':\n"
|
"Error checking for reporter in test executable '${_TEST_EXECUTABLE}':\n"
|
||||||
" Result: ${reporter_check_result}\n"
|
" Result: ${reporter_check_result}\n"
|
||||||
" Output: ${reporter_check_output}\n"
|
" Output: ${reporter_check_output}\n"
|
||||||
)
|
)
|
||||||
@@ -139,46 +134,92 @@ function(catch_discover_tests_impl)
|
|||||||
endforeach()
|
endforeach()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Parse output
|
# Parse JSON output for list of tests/class names/tags
|
||||||
foreach(line ${output})
|
string(JSON version GET "${listing_output}" "version")
|
||||||
set(test "${line}")
|
if(NOT version STREQUAL "1")
|
||||||
|
message(FATAL_ERROR "Unsupported catch output version: '${version}'")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# Speed-up reparsing by cutting away unneeded parts of JSON.
|
||||||
|
string(JSON test_listing GET "${listing_output}" "listings" "tests")
|
||||||
|
string(JSON num_tests LENGTH "${test_listing}")
|
||||||
|
|
||||||
|
# Exit early if no tests are detected
|
||||||
|
if(num_tests STREQUAL "0")
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# CMake's foreach-RANGE is inclusive, so we have to subtract 1
|
||||||
|
math(EXPR num_tests "${num_tests} - 1")
|
||||||
|
|
||||||
|
foreach(idx RANGE ${num_tests})
|
||||||
|
string(JSON single_test GET ${test_listing} ${idx})
|
||||||
|
string(JSON test_tags GET "${single_test}" "tags")
|
||||||
|
string(JSON plain_name GET "${single_test}" "name")
|
||||||
|
|
||||||
# Escape characters in test case names that would be parsed by Catch2
|
# Escape characters in test case names that would be parsed by Catch2
|
||||||
# Note that the \ escaping must happen FIRST! Do not change the order.
|
# Note that the \ escaping must happen FIRST! Do not change the order.
|
||||||
set(test_name "${test}")
|
set(escaped_name "${plain_name}")
|
||||||
foreach(char \\ , [ ])
|
foreach(char \\ , [ ] ;)
|
||||||
string(REPLACE ${char} "\\${char}" test_name "${test_name}")
|
string(REPLACE ${char} "\\${char}" escaped_name "${escaped_name}")
|
||||||
endforeach(char)
|
endforeach(char)
|
||||||
# ...add output dir
|
# ...add output dir
|
||||||
if(output_dir)
|
if(output_dir)
|
||||||
string(REGEX REPLACE "[^A-Za-z0-9_]" "_" test_name_clean "${test_name}")
|
string(REGEX REPLACE "[^A-Za-z0-9_]" "_" escaped_name_clean "${escaped_name}")
|
||||||
set(output_dir_arg "--out ${output_dir}/${output_prefix}${test_name_clean}${output_suffix}")
|
set(output_dir_arg "--out ${output_dir}/${output_prefix}${escaped_name_clean}${output_suffix}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# ...and add to script
|
# ...and add to script
|
||||||
add_command(add_test
|
add_command(add_test
|
||||||
"${prefix}${test}${suffix}"
|
"${prefix}${plain_name}${suffix}"
|
||||||
${_TEST_EXECUTOR}
|
${_TEST_EXECUTOR}
|
||||||
"${_TEST_EXECUTABLE}"
|
"${_TEST_EXECUTABLE}"
|
||||||
"${test_name}"
|
"${escaped_name}"
|
||||||
${extra_args}
|
${extra_args}
|
||||||
"${reporter_arg}"
|
"${reporter_arg}"
|
||||||
"${output_dir_arg}"
|
"${output_dir_arg}"
|
||||||
)
|
)
|
||||||
add_command(set_tests_properties
|
add_command(set_tests_properties
|
||||||
"${prefix}${test}${suffix}"
|
"${prefix}${plain_name}${suffix}"
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
WORKING_DIRECTORY "${_TEST_WORKING_DIR}"
|
WORKING_DIRECTORY "${_TEST_WORKING_DIR}"
|
||||||
${properties}
|
${properties}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if(add_tags)
|
||||||
|
string(JSON num_tags LENGTH "${test_tags}")
|
||||||
|
math(EXPR num_tags "${num_tags} - 1")
|
||||||
|
set(tag_list "")
|
||||||
|
if(num_tags GREATER_EQUAL "0")
|
||||||
|
foreach(tag_idx RANGE ${num_tags})
|
||||||
|
string(JSON a_tag GET "${test_tags}" "${tag_idx}")
|
||||||
|
# Catch2's tags can contain semicolons, which are list element separators
|
||||||
|
# in CMake, so we have to escape them. Ideally we could use the [=[...]=]
|
||||||
|
# syntax for this, but CTest currently keeps the square quotes in the label
|
||||||
|
# name. So we add 2 backslashes to escape it instead.
|
||||||
|
# **IMPORTANT**: The number of backslashes depends on how many layers
|
||||||
|
# of CMake the tag goes. If this script is changed, the
|
||||||
|
# number of backslashes to escape may change as well.
|
||||||
|
string(REPLACE ";" "\\;" a_tag "${a_tag}")
|
||||||
|
list(APPEND tag_list "${a_tag}")
|
||||||
|
endforeach()
|
||||||
|
|
||||||
|
add_command(set_tests_properties
|
||||||
|
"${prefix}${plain_name}${suffix}"
|
||||||
|
PROPERTIES
|
||||||
|
LABELS "${tag_list}"
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
endif(add_tags)
|
||||||
|
|
||||||
if(environment_modifications)
|
if(environment_modifications)
|
||||||
add_command(set_tests_properties
|
add_command(set_tests_properties
|
||||||
"${prefix}${test}${suffix}"
|
"${prefix}${plain_name}${suffix}"
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
ENVIRONMENT_MODIFICATION "${environment_modifications}")
|
ENVIRONMENT_MODIFICATION "${environment_modifications}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
list(APPEND tests "${prefix}${test}${suffix}")
|
list(APPEND tests "${prefix}${plain_name}${suffix}")
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
# Create a list of all discovered tests, which users may use to e.g. set
|
# Create a list of all discovered tests, which users may use to e.g. set
|
||||||
@@ -207,5 +248,6 @@ if(CMAKE_SCRIPT_MODE_FILE)
|
|||||||
TEST_DL_PATHS ${TEST_DL_PATHS}
|
TEST_DL_PATHS ${TEST_DL_PATHS}
|
||||||
TEST_DL_FRAMEWORK_PATHS ${TEST_DL_FRAMEWORK_PATHS}
|
TEST_DL_FRAMEWORK_PATHS ${TEST_DL_FRAMEWORK_PATHS}
|
||||||
CTEST_FILE ${CTEST_FILE}
|
CTEST_FILE ${CTEST_FILE}
|
||||||
|
ADD_TAGS_AS_LABELS ${ADD_TAGS_AS_LABELS}
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
@@ -11,7 +11,7 @@
|
|||||||
# * REPORTER - reporter spec to use for tests
|
# * REPORTER - reporter spec to use for tests
|
||||||
# * TEST_SPEC - test spec used for filtering tests
|
# * TEST_SPEC - test spec used for filtering tests
|
||||||
function(catch_add_sharded_tests TARGET)
|
function(catch_add_sharded_tests TARGET)
|
||||||
if (${CMAKE_VERSION} VERSION_LESS "3.10.0")
|
if(${CMAKE_VERSION} VERSION_LESS "3.10.0")
|
||||||
message(FATAL_ERROR "add_sharded_catch_tests only supports CMake versions 3.10.0 and up")
|
message(FATAL_ERROR "add_sharded_catch_tests only supports CMake versions 3.10.0 and up")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@@ -23,7 +23,7 @@ function(catch_add_sharded_tests TARGET)
|
|||||||
${ARGN}
|
${ARGN}
|
||||||
)
|
)
|
||||||
|
|
||||||
if (NOT DEFINED _SHARD_COUNT)
|
if(NOT DEFINED _SHARD_COUNT)
|
||||||
set(_SHARD_COUNT 2)
|
set(_SHARD_COUNT 2)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@@ -61,8 +61,6 @@ function(catch_add_sharded_tests TARGET)
|
|||||||
-P "${shard_impl_script_file}"
|
-P "${shard_impl_script_file}"
|
||||||
VERBATIM
|
VERBATIM
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
|
|
||||||
|
@@ -25,10 +25,10 @@ if(NOT EXISTS "${TEST_BINARY}")
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(other_args "")
|
set(other_args "")
|
||||||
if (TEST_SPEC)
|
if(TEST_SPEC)
|
||||||
set(other_args "${other_args} ${TEST_SPEC}")
|
set(other_args "${other_args} ${TEST_SPEC}")
|
||||||
endif()
|
endif()
|
||||||
if (REPORTER_SPEC)
|
if(REPORTER_SPEC)
|
||||||
set(other_args "${other_args} --reporter ${REPORTER_SPEC}")
|
set(other_args "${other_args} --reporter ${REPORTER_SPEC}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
@@ -56,7 +56,7 @@
|
|||||||
# #
|
# #
|
||||||
#==================================================================================================#
|
#==================================================================================================#
|
||||||
|
|
||||||
if (CMAKE_MINIMUM_REQUIRED_VERSION VERSION_LESS 2.8.8)
|
if(CMAKE_MINIMUM_REQUIRED_VERSION VERSION_LESS 2.8.8)
|
||||||
message(FATAL_ERROR "ParseAndAddCatchTests requires CMake 2.8.8 or newer")
|
message(FATAL_ERROR "ParseAndAddCatchTests requires CMake 2.8.8 or newer")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@@ -155,7 +155,7 @@ function(ParseAndAddCatchTests_ParseFile SourceFile TestTarget)
|
|||||||
if("${TestType}" STREQUAL "SCENARIO")
|
if("${TestType}" STREQUAL "SCENARIO")
|
||||||
set(Name "Scenario: ${Name}")
|
set(Name "Scenario: ${Name}")
|
||||||
endif()
|
endif()
|
||||||
if(PARSE_CATCH_TESTS_ADD_FIXTURE_IN_TEST_NAME AND "${TestType}" MATCHES "(CATCH_)?TEST_CASE_METHOD" AND TestFixture )
|
if(PARSE_CATCH_TESTS_ADD_FIXTURE_IN_TEST_NAME AND "${TestType}" MATCHES "(CATCH_)?TEST_CASE_METHOD" AND TestFixture)
|
||||||
set(CTestName "${TestFixture}:${Name}")
|
set(CTestName "${TestFixture}:${Name}")
|
||||||
else()
|
else()
|
||||||
set(CTestName "${Name}")
|
set(CTestName "${Name}")
|
||||||
@@ -234,8 +234,6 @@ function(ParseAndAddCatchTests_ParseFile SourceFile TestTarget)
|
|||||||
APPEND
|
APPEND
|
||||||
PROPERTY ParseAndAddCatchTests_TESTS "${CTestName}")
|
PROPERTY ParseAndAddCatchTests_TESTS "${CTestName}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
endforeach()
|
endforeach()
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
|
@@ -6,8 +6,8 @@
|
|||||||
|
|
||||||
// SPDX-License-Identifier: BSL-1.0
|
// SPDX-License-Identifier: BSL-1.0
|
||||||
|
|
||||||
// Catch v3.7.1
|
// Catch v3.8.1
|
||||||
// Generated: 2024-09-17 10:36:45.608896
|
// Generated: 2025-04-08 12:33:19.863332
|
||||||
// ----------------------------------------------------------
|
// ----------------------------------------------------------
|
||||||
// This file is an amalgamation of multiple different files.
|
// This file is an amalgamation of multiple different files.
|
||||||
// You probably shouldn't edit it directly.
|
// You probably shouldn't edit it directly.
|
||||||
@@ -332,7 +332,7 @@ namespace Catch {
|
|||||||
double diff = b - m;
|
double diff = b - m;
|
||||||
return a + diff * diff;
|
return a + diff * diff;
|
||||||
} ) /
|
} ) /
|
||||||
( last - first );
|
static_cast<double>( last - first );
|
||||||
return std::sqrt( variance );
|
return std::sqrt( variance );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -367,7 +367,7 @@ namespace Catch {
|
|||||||
double* first,
|
double* first,
|
||||||
double* last ) {
|
double* last ) {
|
||||||
auto count = last - first;
|
auto count = last - first;
|
||||||
double idx = (count - 1) * k / static_cast<double>(q);
|
double idx = static_cast<double>((count - 1) * k) / static_cast<double>(q);
|
||||||
int j = static_cast<int>(idx);
|
int j = static_cast<int>(idx);
|
||||||
double g = idx - j;
|
double g = idx - j;
|
||||||
std::nth_element(first, first + j, last);
|
std::nth_element(first, first + j, last);
|
||||||
@@ -470,10 +470,10 @@ namespace Catch {
|
|||||||
|
|
||||||
double accel = sum_cubes / ( 6 * std::pow( sum_squares, 1.5 ) );
|
double accel = sum_cubes / ( 6 * std::pow( sum_squares, 1.5 ) );
|
||||||
long n = static_cast<long>( resample.size() );
|
long n = static_cast<long>( resample.size() );
|
||||||
double prob_n =
|
double prob_n = static_cast<double>(
|
||||||
std::count_if( resample.begin(),
|
std::count_if( resample.begin(),
|
||||||
resample.end(),
|
resample.end(),
|
||||||
[point]( double x ) { return x < point; } ) /
|
[point]( double x ) { return x < point; } )) /
|
||||||
static_cast<double>( n );
|
static_cast<double>( n );
|
||||||
// degenerate case with uniform samples
|
// degenerate case with uniform samples
|
||||||
if ( Catch::Detail::directCompare( prob_n, 0. ) ) {
|
if ( Catch::Detail::directCompare( prob_n, 0. ) ) {
|
||||||
@@ -1926,7 +1926,7 @@ namespace Catch {
|
|||||||
return static_cast<unsigned int>(getElapsedMicroseconds()/1000);
|
return static_cast<unsigned int>(getElapsedMicroseconds()/1000);
|
||||||
}
|
}
|
||||||
auto Timer::getElapsedSeconds() const -> double {
|
auto Timer::getElapsedSeconds() const -> double {
|
||||||
return getElapsedMicroseconds()/1000000.0;
|
return static_cast<double>(getElapsedMicroseconds())/1000000.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -1946,7 +1946,10 @@ namespace Detail {
|
|||||||
const int hexThreshold = 255;
|
const int hexThreshold = 255;
|
||||||
|
|
||||||
struct Endianness {
|
struct Endianness {
|
||||||
enum Arch { Big, Little };
|
enum Arch : uint8_t {
|
||||||
|
Big,
|
||||||
|
Little
|
||||||
|
};
|
||||||
|
|
||||||
static Arch which() {
|
static Arch which() {
|
||||||
int one = 1;
|
int one = 1;
|
||||||
@@ -2280,7 +2283,7 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Version const& libraryVersion() {
|
Version const& libraryVersion() {
|
||||||
static Version version( 3, 7, 1, "", 0 );
|
static Version version( 3, 8, 1, "", 0 );
|
||||||
return version;
|
return version;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3516,7 +3519,7 @@ namespace {
|
|||||||
#endif // Windows/ ANSI/ None
|
#endif // Windows/ ANSI/ None
|
||||||
|
|
||||||
|
|
||||||
#if defined( CATCH_PLATFORM_LINUX ) || defined( CATCH_PLATFORM_MAC )
|
#if defined( CATCH_PLATFORM_LINUX ) || defined( CATCH_PLATFORM_MAC ) || defined( __GLIBC__ )
|
||||||
# define CATCH_INTERNAL_HAS_ISATTY
|
# define CATCH_INTERNAL_HAS_ISATTY
|
||||||
# include <unistd.h>
|
# include <unistd.h>
|
||||||
#endif
|
#endif
|
||||||
@@ -5258,7 +5261,7 @@ namespace {
|
|||||||
SimplePcg32::result_type SimplePcg32::operator()() {
|
SimplePcg32::result_type SimplePcg32::operator()() {
|
||||||
// prepare the output value
|
// prepare the output value
|
||||||
const uint32_t xorshifted = static_cast<uint32_t>(((m_state >> 18u) ^ m_state) >> 27u);
|
const uint32_t xorshifted = static_cast<uint32_t>(((m_state >> 18u) ^ m_state) >> 27u);
|
||||||
const auto output = rotate_right(xorshifted, m_state >> 59u);
|
const auto output = rotate_right(xorshifted, static_cast<uint32_t>(m_state >> 59u));
|
||||||
|
|
||||||
// advance state
|
// advance state
|
||||||
m_state = m_state * 6364136223846793005ULL + s_inc;
|
m_state = m_state * 6364136223846793005ULL + s_inc;
|
||||||
@@ -9108,7 +9111,7 @@ struct RowBreak {};
|
|||||||
struct OutputFlush {};
|
struct OutputFlush {};
|
||||||
|
|
||||||
class Duration {
|
class Duration {
|
||||||
enum class Unit {
|
enum class Unit : uint8_t {
|
||||||
Auto,
|
Auto,
|
||||||
Nanoseconds,
|
Nanoseconds,
|
||||||
Microseconds,
|
Microseconds,
|
||||||
@@ -9180,7 +9183,10 @@ public:
|
|||||||
};
|
};
|
||||||
} // end anon namespace
|
} // end anon namespace
|
||||||
|
|
||||||
enum class Justification { Left, Right };
|
enum class Justification : uint8_t {
|
||||||
|
Left,
|
||||||
|
Right
|
||||||
|
};
|
||||||
|
|
||||||
struct ColumnInfo {
|
struct ColumnInfo {
|
||||||
std::string name;
|
std::string name;
|
||||||
|
@@ -6,8 +6,8 @@
|
|||||||
|
|
||||||
// SPDX-License-Identifier: BSL-1.0
|
// SPDX-License-Identifier: BSL-1.0
|
||||||
|
|
||||||
// Catch v3.7.1
|
// Catch v3.8.1
|
||||||
// Generated: 2024-09-17 10:36:40.974985
|
// Generated: 2025-04-08 12:33:19.851017
|
||||||
// ----------------------------------------------------------
|
// ----------------------------------------------------------
|
||||||
// This file is an amalgamation of multiple different files.
|
// This file is an amalgamation of multiple different files.
|
||||||
// You probably shouldn't edit it directly.
|
// You probably shouldn't edit it directly.
|
||||||
@@ -150,7 +150,7 @@
|
|||||||
# define CATCH_INTERNAL_SUPPRESS_SHADOW_WARNINGS \
|
# define CATCH_INTERNAL_SUPPRESS_SHADOW_WARNINGS \
|
||||||
_Pragma( "GCC diagnostic ignored \"-Wshadow\"" )
|
_Pragma( "GCC diagnostic ignored \"-Wshadow\"" )
|
||||||
|
|
||||||
# define CATCH_INTERNAL_IGNORE_BUT_WARN(...) (void)__builtin_constant_p(__VA_ARGS__)
|
# define CATCH_INTERNAL_CONFIG_USE_BUILTIN_CONSTANT_P
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -174,14 +174,45 @@
|
|||||||
// clang-cl defines _MSC_VER as well as __clang__, which could cause the
|
// clang-cl defines _MSC_VER as well as __clang__, which could cause the
|
||||||
// start/stop internal suppression macros to be double defined.
|
// start/stop internal suppression macros to be double defined.
|
||||||
#if defined(__clang__) && !defined(_MSC_VER)
|
#if defined(__clang__) && !defined(_MSC_VER)
|
||||||
|
# define CATCH_INTERNAL_CONFIG_USE_BUILTIN_CONSTANT_P
|
||||||
# define CATCH_INTERNAL_START_WARNINGS_SUPPRESSION _Pragma( "clang diagnostic push" )
|
# define CATCH_INTERNAL_START_WARNINGS_SUPPRESSION _Pragma( "clang diagnostic push" )
|
||||||
# define CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION _Pragma( "clang diagnostic pop" )
|
# define CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION _Pragma( "clang diagnostic pop" )
|
||||||
|
|
||||||
#endif // __clang__ && !_MSC_VER
|
#endif // __clang__ && !_MSC_VER
|
||||||
|
|
||||||
#if defined(__clang__)
|
#if defined(__clang__)
|
||||||
|
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wexit-time-destructors\"" ) \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wglobal-constructors\"")
|
||||||
|
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wparentheses\"" )
|
||||||
|
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_UNUSED_VARIABLE_WARNINGS \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wunused-variable\"" )
|
||||||
|
|
||||||
|
# if (__clang_major__ >= 20)
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_ZERO_VARIADIC_WARNINGS \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wvariadic-macro-arguments-omitted\"" )
|
||||||
|
# elif (__clang_major__ == 19)
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_ZERO_VARIADIC_WARNINGS \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wc++20-extensions\"" )
|
||||||
|
# else
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_ZERO_VARIADIC_WARNINGS
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wgnu-zero-variadic-macro-arguments\"" )
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wunused-template\"" )
|
||||||
|
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_COMMA_WARNINGS \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wcomma\"" )
|
||||||
|
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_SHADOW_WARNINGS \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wshadow\"" )
|
||||||
|
|
||||||
|
#endif // __clang__
|
||||||
|
|
||||||
// As of this writing, IBM XL's implementation of __builtin_constant_p has a bug
|
// As of this writing, IBM XL's implementation of __builtin_constant_p has a bug
|
||||||
// which results in calls to destructors being emitted for each temporary,
|
// which results in calls to destructors being emitted for each temporary,
|
||||||
// without a matching initialization. In practice, this can result in something
|
// without a matching initialization. In practice, this can result in something
|
||||||
@@ -198,35 +229,11 @@
|
|||||||
// https://developer.nvidia.com/nvidia_bug/3321845.
|
// https://developer.nvidia.com/nvidia_bug/3321845.
|
||||||
//
|
//
|
||||||
// Therefore, `CATCH_INTERNAL_IGNORE_BUT_WARN` is not implemented.
|
// Therefore, `CATCH_INTERNAL_IGNORE_BUT_WARN` is not implemented.
|
||||||
# if !defined(__ibmxl__) && !defined(__CUDACC__) && !defined( __NVCOMPILER )
|
#if defined( __ibmxl__ ) || defined( __CUDACC__ ) || defined( __NVCOMPILER )
|
||||||
# define CATCH_INTERNAL_IGNORE_BUT_WARN(...) (void)__builtin_constant_p(__VA_ARGS__) /* NOLINT(cppcoreguidelines-pro-type-vararg, hicpp-vararg) */
|
# define CATCH_INTERNAL_CONFIG_NO_USE_BUILTIN_CONSTANT_P
|
||||||
# endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
# define CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
|
|
||||||
_Pragma( "clang diagnostic ignored \"-Wexit-time-destructors\"" ) \
|
|
||||||
_Pragma( "clang diagnostic ignored \"-Wglobal-constructors\"")
|
|
||||||
|
|
||||||
# define CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS \
|
|
||||||
_Pragma( "clang diagnostic ignored \"-Wparentheses\"" )
|
|
||||||
|
|
||||||
# define CATCH_INTERNAL_SUPPRESS_UNUSED_VARIABLE_WARNINGS \
|
|
||||||
_Pragma( "clang diagnostic ignored \"-Wunused-variable\"" )
|
|
||||||
|
|
||||||
# define CATCH_INTERNAL_SUPPRESS_ZERO_VARIADIC_WARNINGS \
|
|
||||||
_Pragma( "clang diagnostic ignored \"-Wgnu-zero-variadic-macro-arguments\"" )
|
|
||||||
|
|
||||||
# define CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS \
|
|
||||||
_Pragma( "clang diagnostic ignored \"-Wunused-template\"" )
|
|
||||||
|
|
||||||
# define CATCH_INTERNAL_SUPPRESS_COMMA_WARNINGS \
|
|
||||||
_Pragma( "clang diagnostic ignored \"-Wcomma\"" )
|
|
||||||
|
|
||||||
# define CATCH_INTERNAL_SUPPRESS_SHADOW_WARNINGS \
|
|
||||||
_Pragma( "clang diagnostic ignored \"-Wshadow\"" )
|
|
||||||
|
|
||||||
#endif // __clang__
|
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
// We know some environments not to support full POSIX signals
|
// We know some environments not to support full POSIX signals
|
||||||
@@ -450,6 +457,22 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
// The goal of this macro is to avoid evaluation of the arguments, but
|
||||||
|
// still have the compiler warn on problems inside...
|
||||||
|
#if defined( CATCH_INTERNAL_CONFIG_USE_BUILTIN_CONSTANT_P ) && \
|
||||||
|
!defined( CATCH_INTERNAL_CONFIG_NO_USE_BUILTIN_CONSTANT_P ) && !defined(CATCH_CONFIG_USE_BUILTIN_CONSTANT_P)
|
||||||
|
#define CATCH_CONFIG_USE_BUILTIN_CONSTANT_P
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined( CATCH_CONFIG_USE_BUILTIN_CONSTANT_P ) && \
|
||||||
|
!defined( CATCH_CONFIG_NO_USE_BUILTIN_CONSTANT_P )
|
||||||
|
# define CATCH_INTERNAL_IGNORE_BUT_WARN( ... ) \
|
||||||
|
(void)__builtin_constant_p( __VA_ARGS__ ) /* NOLINT(cppcoreguidelines-pro-type-vararg, \
|
||||||
|
hicpp-vararg) */
|
||||||
|
#else
|
||||||
|
# define CATCH_INTERNAL_IGNORE_BUT_WARN( ... )
|
||||||
|
#endif
|
||||||
|
|
||||||
// Even if we do not think the compiler has that warning, we still have
|
// Even if we do not think the compiler has that warning, we still have
|
||||||
// to provide a macro that can be used by the code.
|
// to provide a macro that can be used by the code.
|
||||||
#if !defined(CATCH_INTERNAL_START_WARNINGS_SUPPRESSION)
|
#if !defined(CATCH_INTERNAL_START_WARNINGS_SUPPRESSION)
|
||||||
@@ -486,13 +509,6 @@
|
|||||||
# define CATCH_INTERNAL_SUPPRESS_SHADOW_WARNINGS
|
# define CATCH_INTERNAL_SUPPRESS_SHADOW_WARNINGS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
// The goal of this macro is to avoid evaluation of the arguments, but
|
|
||||||
// still have the compiler warn on problems inside...
|
|
||||||
#if !defined(CATCH_INTERNAL_IGNORE_BUT_WARN)
|
|
||||||
# define CATCH_INTERNAL_IGNORE_BUT_WARN(...)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(__APPLE__) && defined(__apple_build_version__) && (__clang_major__ < 10)
|
#if defined(__APPLE__) && defined(__apple_build_version__) && (__clang_major__ < 10)
|
||||||
# undef CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS
|
# undef CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS
|
||||||
#elif defined(__clang__) && (__clang_major__ < 5)
|
#elif defined(__clang__) && (__clang_major__ < 5)
|
||||||
@@ -3050,7 +3066,11 @@ struct ratio_string<std::milli> {
|
|||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
std::tm timeInfo = {};
|
std::tm timeInfo = {};
|
||||||
gmtime_s(&timeInfo, &converted);
|
const auto err = gmtime_s(&timeInfo, &converted);
|
||||||
|
if ( err ) {
|
||||||
|
return "gmtime from provided timepoint has failed. This "
|
||||||
|
"happens e.g. with pre-1970 dates using Microsoft libc";
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
std::tm* timeInfo = std::gmtime(&converted);
|
std::tm* timeInfo = std::gmtime(&converted);
|
||||||
#endif
|
#endif
|
||||||
@@ -7329,7 +7349,7 @@ namespace Catch {
|
|||||||
#define CATCH_VERSION_MACROS_HPP_INCLUDED
|
#define CATCH_VERSION_MACROS_HPP_INCLUDED
|
||||||
|
|
||||||
#define CATCH_VERSION_MAJOR 3
|
#define CATCH_VERSION_MAJOR 3
|
||||||
#define CATCH_VERSION_MINOR 7
|
#define CATCH_VERSION_MINOR 8
|
||||||
#define CATCH_VERSION_PATCH 1
|
#define CATCH_VERSION_PATCH 1
|
||||||
|
|
||||||
#endif // CATCH_VERSION_MACROS_HPP_INCLUDED
|
#endif // CATCH_VERSION_MACROS_HPP_INCLUDED
|
||||||
@@ -8713,7 +8733,7 @@ public:
|
|||||||
|
|
||||||
template <typename InputIterator,
|
template <typename InputIterator,
|
||||||
typename InputSentinel,
|
typename InputSentinel,
|
||||||
typename ResultType = typename std::iterator_traits<InputIterator>::value_type>
|
typename ResultType = std::remove_const_t<typename std::iterator_traits<InputIterator>::value_type>>
|
||||||
GeneratorWrapper<ResultType> from_range(InputIterator from, InputSentinel to) {
|
GeneratorWrapper<ResultType> from_range(InputIterator from, InputSentinel to) {
|
||||||
return GeneratorWrapper<ResultType>(Catch::Detail::make_unique<IteratorGenerator<ResultType>>(from, to));
|
return GeneratorWrapper<ResultType>(Catch::Detail::make_unique<IteratorGenerator<ResultType>>(from, to));
|
||||||
}
|
}
|
||||||
@@ -12691,56 +12711,65 @@ namespace Catch {
|
|||||||
* Creates a matcher that checks if all elements in a range are equal
|
* Creates a matcher that checks if all elements in a range are equal
|
||||||
* to all elements in another range.
|
* to all elements in another range.
|
||||||
*
|
*
|
||||||
* Uses `std::equal_to` to do the comparison
|
* Uses the provided predicate `predicate` to do the comparisons
|
||||||
|
* (defaulting to `std::equal_to`)
|
||||||
*/
|
*/
|
||||||
template <typename RangeLike>
|
template <typename RangeLike,
|
||||||
constexpr
|
typename Equality = decltype( std::equal_to<>{} )>
|
||||||
std::enable_if_t<!Detail::is_matcher<RangeLike>::value,
|
|
||||||
RangeEqualsMatcher<RangeLike, std::equal_to<>>>
|
|
||||||
RangeEquals( RangeLike&& range ) {
|
|
||||||
return { CATCH_FORWARD( range ), std::equal_to<>{} };
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a matcher that checks if all elements in a range are equal
|
|
||||||
* to all elements in another range.
|
|
||||||
*
|
|
||||||
* Uses to provided predicate `predicate` to do the comparisons
|
|
||||||
*/
|
|
||||||
template <typename RangeLike, typename Equality>
|
|
||||||
constexpr
|
constexpr
|
||||||
RangeEqualsMatcher<RangeLike, Equality>
|
RangeEqualsMatcher<RangeLike, Equality>
|
||||||
RangeEquals( RangeLike&& range, Equality&& predicate ) {
|
RangeEquals( RangeLike&& range,
|
||||||
|
Equality&& predicate = std::equal_to<>{} ) {
|
||||||
return { CATCH_FORWARD( range ), CATCH_FORWARD( predicate ) };
|
return { CATCH_FORWARD( range ), CATCH_FORWARD( predicate ) };
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a matcher that checks if all elements in a range are equal
|
* Creates a matcher that checks if all elements in a range are equal
|
||||||
* to all elements in another range, in some permutation
|
* to all elements in an initializer list.
|
||||||
*
|
*
|
||||||
* Uses `std::equal_to` to do the comparison
|
* Uses the provided predicate `predicate` to do the comparisons
|
||||||
|
* (defaulting to `std::equal_to`)
|
||||||
*/
|
*/
|
||||||
template <typename RangeLike>
|
template <typename T,
|
||||||
|
typename Equality = decltype( std::equal_to<>{} )>
|
||||||
constexpr
|
constexpr
|
||||||
std::enable_if_t<
|
RangeEqualsMatcher<std::initializer_list<T>, Equality>
|
||||||
!Detail::is_matcher<RangeLike>::value,
|
RangeEquals( std::initializer_list<T> range,
|
||||||
UnorderedRangeEqualsMatcher<RangeLike, std::equal_to<>>>
|
Equality&& predicate = std::equal_to<>{} ) {
|
||||||
UnorderedRangeEquals( RangeLike&& range ) {
|
return { range, CATCH_FORWARD( predicate ) };
|
||||||
return { CATCH_FORWARD( range ), std::equal_to<>{} };
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a matcher that checks if all elements in a range are equal
|
* Creates a matcher that checks if all elements in a range are equal
|
||||||
* to all elements in another range, in some permutation.
|
* to all elements in another range, in some permutation.
|
||||||
*
|
*
|
||||||
* Uses to provided predicate `predicate` to do the comparisons
|
* Uses the provided predicate `predicate` to do the comparisons
|
||||||
|
* (defaulting to `std::equal_to`)
|
||||||
*/
|
*/
|
||||||
template <typename RangeLike, typename Equality>
|
template <typename RangeLike,
|
||||||
|
typename Equality = decltype( std::equal_to<>{} )>
|
||||||
constexpr
|
constexpr
|
||||||
UnorderedRangeEqualsMatcher<RangeLike, Equality>
|
UnorderedRangeEqualsMatcher<RangeLike, Equality>
|
||||||
UnorderedRangeEquals( RangeLike&& range, Equality&& predicate ) {
|
UnorderedRangeEquals( RangeLike&& range,
|
||||||
|
Equality&& predicate = std::equal_to<>{} ) {
|
||||||
return { CATCH_FORWARD( range ), CATCH_FORWARD( predicate ) };
|
return { CATCH_FORWARD( range ), CATCH_FORWARD( predicate ) };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a matcher that checks if all elements in a range are equal
|
||||||
|
* to all elements in an initializer list, in some permutation.
|
||||||
|
*
|
||||||
|
* Uses the provided predicate `predicate` to do the comparisons
|
||||||
|
* (defaulting to `std::equal_to`)
|
||||||
|
*/
|
||||||
|
template <typename T,
|
||||||
|
typename Equality = decltype( std::equal_to<>{} )>
|
||||||
|
constexpr
|
||||||
|
UnorderedRangeEqualsMatcher<std::initializer_list<T>, Equality>
|
||||||
|
UnorderedRangeEquals( std::initializer_list<T> range,
|
||||||
|
Equality&& predicate = std::equal_to<>{} ) {
|
||||||
|
return { range, CATCH_FORWARD( predicate ) };
|
||||||
|
}
|
||||||
} // namespace Matchers
|
} // namespace Matchers
|
||||||
} // namespace Catch
|
} // namespace Catch
|
||||||
|
|
||||||
|
@@ -15,6 +15,6 @@ target_compile_features(fuzzhelper PUBLIC cxx_std_17)
|
|||||||
target_link_options(fuzzhelper PUBLIC "-fsanitize=fuzzer")
|
target_link_options(fuzzhelper PUBLIC "-fsanitize=fuzzer")
|
||||||
|
|
||||||
foreach(fuzzer TestSpecParser XmlWriter textflow)
|
foreach(fuzzer TestSpecParser XmlWriter textflow)
|
||||||
add_executable(fuzz_${fuzzer} fuzz_${fuzzer}.cpp)
|
add_executable(fuzz_${fuzzer} fuzz_${fuzzer}.cpp)
|
||||||
target_link_libraries(fuzz_${fuzzer} PRIVATE fuzzhelper)
|
target_link_libraries(fuzz_${fuzzer} PRIVATE fuzzhelper)
|
||||||
endforeach()
|
endforeach()
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
project(
|
project(
|
||||||
'catch2',
|
'catch2',
|
||||||
'cpp',
|
'cpp',
|
||||||
version: '3.7.1', # CML version placeholder, don't delete
|
version: '3.8.1', # CML version placeholder, don't delete
|
||||||
license: 'BSL-1.0',
|
license: 'BSL-1.0',
|
||||||
meson_version: '>=0.54.1',
|
meson_version: '>=0.54.1',
|
||||||
)
|
)
|
||||||
|
@@ -1 +1,2 @@
|
|||||||
option('tests', type: 'boolean', value: true, description: 'Build the unit tests')
|
option('tests', type: 'boolean', value: true, description: 'Build the unit tests')
|
||||||
|
option('install', type: 'boolean', value: true, description: 'Install the library')
|
||||||
|
@@ -40,7 +40,6 @@ set(BENCHMARK_SOURCES
|
|||||||
)
|
)
|
||||||
set(BENCHMARK_FILES ${BENCHMARK_HEADERS} ${BENCHMARK_SOURCES})
|
set(BENCHMARK_FILES ${BENCHMARK_HEADERS} ${BENCHMARK_SOURCES})
|
||||||
|
|
||||||
|
|
||||||
set(IMPL_HEADERS
|
set(IMPL_HEADERS
|
||||||
"${PROJECT_BINARY_DIR}/generated-includes/catch2/catch_user_config.hpp"
|
"${PROJECT_BINARY_DIR}/generated-includes/catch2/catch_user_config.hpp"
|
||||||
${SOURCES_DIR}/catch_user_config.hpp.in
|
${SOURCES_DIR}/catch_user_config.hpp.in
|
||||||
@@ -348,25 +347,23 @@ source_group("generated headers"
|
|||||||
)
|
)
|
||||||
|
|
||||||
add_library(Catch2 ${ALL_FILES})
|
add_library(Catch2 ${ALL_FILES})
|
||||||
if (CATCH_ENABLE_REPRODUCIBLE_BUILD)
|
if(CATCH_ENABLE_REPRODUCIBLE_BUILD)
|
||||||
add_build_reproducibility_settings(Catch2)
|
add_build_reproducibility_settings(Catch2)
|
||||||
endif()
|
endif()
|
||||||
add_library(Catch2::Catch2 ALIAS Catch2)
|
add_library(Catch2::Catch2 ALIAS Catch2)
|
||||||
|
|
||||||
if (ANDROID)
|
if(ANDROID)
|
||||||
target_link_libraries(Catch2 PRIVATE log)
|
target_link_libraries(Catch2 PRIVATE log)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set_target_properties(Catch2 PROPERTIES
|
set_target_properties(Catch2 PROPERTIES
|
||||||
DEBUG_POSTFIX "d"
|
DEBUG_POSTFIX "d"
|
||||||
VERSION ${PROJECT_VERSION}
|
VERSION ${PROJECT_VERSION}
|
||||||
SOVERSION ${PROJECT_VERSION})
|
SOVERSION ${PROJECT_VERSION}
|
||||||
|
)
|
||||||
|
|
||||||
# require C++14
|
# require C++14
|
||||||
target_compile_features(Catch2
|
target_compile_features(Catch2 PUBLIC cxx_std_14)
|
||||||
PUBLIC
|
|
||||||
cxx_std_14
|
|
||||||
)
|
|
||||||
|
|
||||||
configure_file(
|
configure_file(
|
||||||
"${SOURCES_DIR}/catch_user_config.hpp.in"
|
"${SOURCES_DIR}/catch_user_config.hpp.in"
|
||||||
@@ -384,7 +381,7 @@ target_include_directories(Catch2
|
|||||||
add_library(Catch2WithMain
|
add_library(Catch2WithMain
|
||||||
${SOURCES_DIR}/internal/catch_main.cpp
|
${SOURCES_DIR}/internal/catch_main.cpp
|
||||||
)
|
)
|
||||||
if (CATCH_ENABLE_REPRODUCIBLE_BUILD)
|
if(CATCH_ENABLE_REPRODUCIBLE_BUILD)
|
||||||
add_build_reproducibility_settings(Catch2WithMain)
|
add_build_reproducibility_settings(Catch2WithMain)
|
||||||
endif()
|
endif()
|
||||||
add_library(Catch2::Catch2WithMain ALIAS Catch2WithMain)
|
add_library(Catch2::Catch2WithMain ALIAS Catch2WithMain)
|
||||||
@@ -397,7 +394,7 @@ set_target_properties(Catch2WithMain
|
|||||||
)
|
)
|
||||||
set_target_properties(Catch2WithMain PROPERTIES DEBUG_POSTFIX "d")
|
set_target_properties(Catch2WithMain PROPERTIES DEBUG_POSTFIX "d")
|
||||||
|
|
||||||
if (NOT_SUBPROJECT)
|
if(NOT_SUBPROJECT)
|
||||||
# create and install an export set for catch target as Catch2::Catch
|
# create and install an export set for catch target as Catch2::Catch
|
||||||
install(
|
install(
|
||||||
TARGETS
|
TARGETS
|
||||||
@@ -413,7 +410,6 @@ if (NOT_SUBPROJECT)
|
|||||||
${CMAKE_INSTALL_BINDIR}
|
${CMAKE_INSTALL_BINDIR}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
install(
|
install(
|
||||||
EXPORT
|
EXPORT
|
||||||
Catch2Targets
|
Catch2Targets
|
||||||
@@ -437,7 +433,7 @@ endif()
|
|||||||
# Some tests require a full recompilation of Catch2 lib with different
|
# Some tests require a full recompilation of Catch2 lib with different
|
||||||
# compilation flags. They can link against this target to recompile all
|
# compilation flags. They can link against this target to recompile all
|
||||||
# the sources into the binary.
|
# the sources into the binary.
|
||||||
if (CATCH_BUILD_EXAMPLES OR CATCH_BUILD_EXTRA_TESTS)
|
if(CATCH_BUILD_EXAMPLES OR CATCH_BUILD_EXTRA_TESTS)
|
||||||
add_library(Catch2_buildall_interface INTERFACE)
|
add_library(Catch2_buildall_interface INTERFACE)
|
||||||
target_sources(Catch2_buildall_interface INTERFACE
|
target_sources(Catch2_buildall_interface INTERFACE
|
||||||
${ALL_FILES}
|
${ALL_FILES}
|
||||||
@@ -450,31 +446,24 @@ if (CATCH_BUILD_EXAMPLES OR CATCH_BUILD_EXTRA_TESTS)
|
|||||||
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}/generated-includes>
|
$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}/generated-includes>
|
||||||
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
|
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
|
||||||
)
|
)
|
||||||
target_compile_definitions(Catch2_buildall_interface
|
target_compile_definitions(Catch2_buildall_interface INTERFACE CATCH_CONFIG_STATIC)
|
||||||
INTERFACE
|
target_compile_features(Catch2_buildall_interface INTERFACE cxx_std_14)
|
||||||
CATCH_CONFIG_STATIC
|
|
||||||
)
|
|
||||||
target_compile_features(Catch2_buildall_interface
|
|
||||||
INTERFACE
|
|
||||||
cxx_std_14
|
|
||||||
)
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
list(APPEND CATCH_WARNING_TARGETS Catch2 Catch2WithMain)
|
list(APPEND CATCH_WARNING_TARGETS Catch2 Catch2WithMain)
|
||||||
set(CATCH_WARNING_TARGETS ${CATCH_WARNING_TARGETS} PARENT_SCOPE)
|
set(CATCH_WARNING_TARGETS ${CATCH_WARNING_TARGETS} PARENT_SCOPE)
|
||||||
|
|
||||||
|
|
||||||
# We still do not support building dynamic library with hidden visibility
|
# We still do not support building dynamic library with hidden visibility
|
||||||
# so we want to check & warn users if they do this. However, we won't abort
|
# so we want to check & warn users if they do this. However, we won't abort
|
||||||
# the configuration step so that we don't have to also provide an override.
|
# the configuration step so that we don't have to also provide an override.
|
||||||
if (BUILD_SHARED_LIBS)
|
if(BUILD_SHARED_LIBS)
|
||||||
set_target_properties(Catch2 Catch2WithMain
|
set_target_properties(Catch2 Catch2WithMain
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
WINDOWS_EXPORT_ALL_SYMBOLS ON
|
WINDOWS_EXPORT_ALL_SYMBOLS ON
|
||||||
)
|
)
|
||||||
|
|
||||||
get_target_property(_VisPreset Catch2 CXX_VISIBILITY_PRESET)
|
get_target_property(_VisPreset Catch2 CXX_VISIBILITY_PRESET)
|
||||||
if (NOT MSVC AND _VisPreset STREQUAL "hidden")
|
if(NOT MSVC AND _VisPreset STREQUAL "hidden")
|
||||||
set_target_properties(Catch2 Catch2WithMain
|
set_target_properties(Catch2 Catch2WithMain
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
CXX_VISIBILITY_PRESET "default"
|
CXX_VISIBILITY_PRESET "default"
|
||||||
|
@@ -97,7 +97,7 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// sets lambda to be used in fun *and* executes benchmark!
|
// sets lambda to be used in fun *and* executes benchmark!
|
||||||
template <typename Fun, std::enable_if_t<!Detail::is_related<Fun, Benchmark>::value, int> = 0>
|
template <typename Fun, std::enable_if_t<!Detail::is_related_v<Fun, Benchmark>, int> = 0>
|
||||||
Benchmark & operator=(Fun func) {
|
Benchmark & operator=(Fun func) {
|
||||||
auto const* cfg = getCurrentContext().getConfig();
|
auto const* cfg = getCurrentContext().getConfig();
|
||||||
if (!cfg->skipBenchmarks()) {
|
if (!cfg->skipBenchmarks()) {
|
||||||
|
@@ -21,8 +21,7 @@ namespace Catch {
|
|||||||
namespace Benchmark {
|
namespace Benchmark {
|
||||||
namespace Detail {
|
namespace Detail {
|
||||||
template <typename T, typename U>
|
template <typename T, typename U>
|
||||||
struct is_related
|
static constexpr bool is_related_v = std::is_same<std::decay_t<T>, std::decay_t<U>>::value;
|
||||||
: std::is_same<std::decay_t<T>, std::decay_t<U>> {};
|
|
||||||
|
|
||||||
/// We need to reinvent std::function because every piece of code that might add overhead
|
/// We need to reinvent std::function because every piece of code that might add overhead
|
||||||
/// in a measurement context needs to have consistent performance characteristics so that we
|
/// in a measurement context needs to have consistent performance characteristics so that we
|
||||||
@@ -63,7 +62,7 @@ namespace Catch {
|
|||||||
BenchmarkFunction();
|
BenchmarkFunction();
|
||||||
|
|
||||||
template <typename Fun,
|
template <typename Fun,
|
||||||
std::enable_if_t<!is_related<Fun, BenchmarkFunction>::value, int> = 0>
|
std::enable_if_t<!is_related_v<Fun, BenchmarkFunction>, int> = 0>
|
||||||
BenchmarkFunction(Fun&& fun)
|
BenchmarkFunction(Fun&& fun)
|
||||||
: f(new model<std::decay_t<Fun>>(CATCH_FORWARD(fun))) {}
|
: f(new model<std::decay_t<Fun>>(CATCH_FORWARD(fun))) {}
|
||||||
|
|
||||||
|
@@ -15,7 +15,6 @@
|
|||||||
#include <catch2/benchmark/detail/catch_stats.hpp>
|
#include <catch2/benchmark/detail/catch_stats.hpp>
|
||||||
#include <catch2/benchmark/detail/catch_measure.hpp>
|
#include <catch2/benchmark/detail/catch_measure.hpp>
|
||||||
#include <catch2/benchmark/detail/catch_run_for_at_least.hpp>
|
#include <catch2/benchmark/detail/catch_run_for_at_least.hpp>
|
||||||
#include <catch2/benchmark/catch_clock.hpp>
|
|
||||||
#include <catch2/internal/catch_unique_ptr.hpp>
|
#include <catch2/internal/catch_unique_ptr.hpp>
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
@@ -178,7 +178,7 @@ namespace Catch {
|
|||||||
double diff = b - m;
|
double diff = b - m;
|
||||||
return a + diff * diff;
|
return a + diff * diff;
|
||||||
} ) /
|
} ) /
|
||||||
( last - first );
|
static_cast<double>( last - first );
|
||||||
return std::sqrt( variance );
|
return std::sqrt( variance );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -213,7 +213,7 @@ namespace Catch {
|
|||||||
double* first,
|
double* first,
|
||||||
double* last ) {
|
double* last ) {
|
||||||
auto count = last - first;
|
auto count = last - first;
|
||||||
double idx = (count - 1) * k / static_cast<double>(q);
|
double idx = static_cast<double>((count - 1) * k) / static_cast<double>(q);
|
||||||
int j = static_cast<int>(idx);
|
int j = static_cast<int>(idx);
|
||||||
double g = idx - j;
|
double g = idx - j;
|
||||||
std::nth_element(first, first + j, last);
|
std::nth_element(first, first + j, last);
|
||||||
@@ -316,10 +316,10 @@ namespace Catch {
|
|||||||
|
|
||||||
double accel = sum_cubes / ( 6 * std::pow( sum_squares, 1.5 ) );
|
double accel = sum_cubes / ( 6 * std::pow( sum_squares, 1.5 ) );
|
||||||
long n = static_cast<long>( resample.size() );
|
long n = static_cast<long>( resample.size() );
|
||||||
double prob_n =
|
double prob_n = static_cast<double>(
|
||||||
std::count_if( resample.begin(),
|
std::count_if( resample.begin(),
|
||||||
resample.end(),
|
resample.end(),
|
||||||
[point]( double x ) { return x < point; } ) /
|
[point]( double x ) { return x < point; } )) /
|
||||||
static_cast<double>( n );
|
static_cast<double>( n );
|
||||||
// degenerate case with uniform samples
|
// degenerate case with uniform samples
|
||||||
if ( Catch::Detail::directCompare( prob_n, 0. ) ) {
|
if ( Catch::Detail::directCompare( prob_n, 0. ) ) {
|
||||||
|
@@ -13,8 +13,6 @@
|
|||||||
#include <catch2/benchmark/catch_clock.hpp>
|
#include <catch2/benchmark/catch_clock.hpp>
|
||||||
#include <catch2/benchmark/detail/catch_complete_invoke.hpp>
|
#include <catch2/benchmark/detail/catch_complete_invoke.hpp>
|
||||||
|
|
||||||
#include <type_traits>
|
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
namespace Benchmark {
|
namespace Benchmark {
|
||||||
template <typename Result>
|
template <typename Result>
|
||||||
|
@@ -76,7 +76,7 @@ namespace Catch {
|
|||||||
WarnAbout::What warnings = WarnAbout::Nothing;
|
WarnAbout::What warnings = WarnAbout::Nothing;
|
||||||
ShowDurations showDurations = ShowDurations::DefaultForReporter;
|
ShowDurations showDurations = ShowDurations::DefaultForReporter;
|
||||||
double minDuration = -1;
|
double minDuration = -1;
|
||||||
TestRunOrder runOrder = TestRunOrder::Declared;
|
TestRunOrder runOrder = TestRunOrder::Randomized;
|
||||||
ColourMode defaultColourMode = ColourMode::PlatformDefault;
|
ColourMode defaultColourMode = ColourMode::PlatformDefault;
|
||||||
WaitForKeypress::When waitForKeypress = WaitForKeypress::Never;
|
WaitForKeypress::When waitForKeypress = WaitForKeypress::Never;
|
||||||
|
|
||||||
|
@@ -25,7 +25,6 @@
|
|||||||
#include <catch2/internal/catch_stdstreams.hpp>
|
#include <catch2/internal/catch_stdstreams.hpp>
|
||||||
#include <catch2/internal/catch_istream.hpp>
|
#include <catch2/internal/catch_istream.hpp>
|
||||||
|
|
||||||
#include <algorithm>
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <exception>
|
#include <exception>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
|
@@ -30,7 +30,7 @@ namespace Catch {
|
|||||||
return static_cast<unsigned int>(getElapsedMicroseconds()/1000);
|
return static_cast<unsigned int>(getElapsedMicroseconds()/1000);
|
||||||
}
|
}
|
||||||
auto Timer::getElapsedSeconds() const -> double {
|
auto Timer::getElapsedSeconds() const -> double {
|
||||||
return getElapsedMicroseconds()/1000000.0;
|
return static_cast<double>(getElapsedMicroseconds())/1000000.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -11,7 +11,6 @@
|
|||||||
#include <catch2/internal/catch_context.hpp>
|
#include <catch2/internal/catch_context.hpp>
|
||||||
#include <catch2/internal/catch_polyfills.hpp>
|
#include <catch2/internal/catch_polyfills.hpp>
|
||||||
|
|
||||||
#include <cmath>
|
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
@@ -22,7 +21,10 @@ namespace Detail {
|
|||||||
const int hexThreshold = 255;
|
const int hexThreshold = 255;
|
||||||
|
|
||||||
struct Endianness {
|
struct Endianness {
|
||||||
enum Arch { Big, Little };
|
enum Arch : uint8_t {
|
||||||
|
Big,
|
||||||
|
Little
|
||||||
|
};
|
||||||
|
|
||||||
static Arch which() {
|
static Arch which() {
|
||||||
int one = 1;
|
int one = 1;
|
||||||
|
@@ -64,18 +64,14 @@ namespace Catch {
|
|||||||
return rawMemoryToString( &object, sizeof(object) );
|
return rawMemoryToString( &object, sizeof(object) );
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T>
|
template<typename T,typename = void>
|
||||||
class IsStreamInsertable {
|
static constexpr bool IsStreamInsertable_v = false;
|
||||||
template<typename Stream, typename U>
|
|
||||||
static auto test(int)
|
|
||||||
-> decltype(std::declval<Stream&>() << std::declval<U>(), std::true_type());
|
|
||||||
|
|
||||||
template<typename, typename>
|
template <typename T>
|
||||||
static auto test(...)->std::false_type;
|
static constexpr bool IsStreamInsertable_v<
|
||||||
|
T,
|
||||||
public:
|
decltype( void( std::declval<std::ostream&>() << std::declval<T>() ) )> =
|
||||||
static const bool value = decltype(test<std::ostream, const T&>(0))::value;
|
true;
|
||||||
};
|
|
||||||
|
|
||||||
template<typename E>
|
template<typename E>
|
||||||
std::string convertUnknownEnumToString( E e );
|
std::string convertUnknownEnumToString( E e );
|
||||||
@@ -120,7 +116,7 @@ namespace Catch {
|
|||||||
struct StringMaker {
|
struct StringMaker {
|
||||||
template <typename Fake = T>
|
template <typename Fake = T>
|
||||||
static
|
static
|
||||||
std::enable_if_t<::Catch::Detail::IsStreamInsertable<Fake>::value, std::string>
|
std::enable_if_t<::Catch::Detail::IsStreamInsertable_v<Fake>, std::string>
|
||||||
convert(const Fake& value) {
|
convert(const Fake& value) {
|
||||||
ReusableStringStream rss;
|
ReusableStringStream rss;
|
||||||
// NB: call using the function-like syntax to avoid ambiguity with
|
// NB: call using the function-like syntax to avoid ambiguity with
|
||||||
@@ -131,7 +127,7 @@ namespace Catch {
|
|||||||
|
|
||||||
template <typename Fake = T>
|
template <typename Fake = T>
|
||||||
static
|
static
|
||||||
std::enable_if_t<!::Catch::Detail::IsStreamInsertable<Fake>::value, std::string>
|
std::enable_if_t<!::Catch::Detail::IsStreamInsertable_v<Fake>, std::string>
|
||||||
convert( const Fake& value ) {
|
convert( const Fake& value ) {
|
||||||
#if !defined(CATCH_CONFIG_FALLBACK_STRINGIFIER)
|
#if !defined(CATCH_CONFIG_FALLBACK_STRINGIFIER)
|
||||||
return Detail::convertUnstreamable(value);
|
return Detail::convertUnstreamable(value);
|
||||||
@@ -523,7 +519,7 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<typename R>
|
template<typename R>
|
||||||
struct StringMaker<R, std::enable_if_t<is_range<R>::value && !::Catch::Detail::IsStreamInsertable<R>::value>> {
|
struct StringMaker<R, std::enable_if_t<is_range<R>::value && !::Catch::Detail::IsStreamInsertable_v<R>>> {
|
||||||
static std::string convert( R const& range ) {
|
static std::string convert( R const& range ) {
|
||||||
return rangeToString( range );
|
return rangeToString( range );
|
||||||
}
|
}
|
||||||
@@ -634,7 +630,11 @@ struct ratio_string<std::milli> {
|
|||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
std::tm timeInfo = {};
|
std::tm timeInfo = {};
|
||||||
gmtime_s(&timeInfo, &converted);
|
const auto err = gmtime_s(&timeInfo, &converted);
|
||||||
|
if ( err ) {
|
||||||
|
return "gmtime from provided timepoint has failed. This "
|
||||||
|
"happens e.g. with pre-1970 dates using Microsoft libc";
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
std::tm* timeInfo = std::gmtime(&converted);
|
std::tm* timeInfo = std::gmtime(&converted);
|
||||||
#endif
|
#endif
|
||||||
|
@@ -178,6 +178,15 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#cmakedefine CATCH_CONFIG_USE_BUILTIN_CONSTANT_P
|
||||||
|
#cmakedefine CATCH_CONFIG_NO_USE_BUILTIN_CONSTANT_P
|
||||||
|
|
||||||
|
#if defined( CATCH_CONFIG_USE_BUILTIN_CONSTANT_P ) && \
|
||||||
|
defined( CATCH_CONFIG_NO_USE_BUILTIN_CONSTANT_P )
|
||||||
|
# error Cannot force USE_BUILTIN_CONSTANT_P to both ON and OFF
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
// ------
|
// ------
|
||||||
// Simple toggle defines
|
// Simple toggle defines
|
||||||
// their value is never used and they cannot be overridden
|
// their value is never used and they cannot be overridden
|
||||||
|
@@ -36,7 +36,7 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Version const& libraryVersion() {
|
Version const& libraryVersion() {
|
||||||
static Version version( 3, 7, 1, "", 0 );
|
static Version version( 3, 8, 1, "", 0 );
|
||||||
return version;
|
return version;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
#define CATCH_VERSION_MACROS_HPP_INCLUDED
|
#define CATCH_VERSION_MACROS_HPP_INCLUDED
|
||||||
|
|
||||||
#define CATCH_VERSION_MAJOR 3
|
#define CATCH_VERSION_MAJOR 3
|
||||||
#define CATCH_VERSION_MINOR 7
|
#define CATCH_VERSION_MINOR 8
|
||||||
#define CATCH_VERSION_PATCH 1
|
#define CATCH_VERSION_PATCH 1
|
||||||
|
|
||||||
#endif // CATCH_VERSION_MACROS_HPP_INCLUDED
|
#endif // CATCH_VERSION_MACROS_HPP_INCLUDED
|
||||||
|
@@ -91,7 +91,7 @@ public:
|
|||||||
|
|
||||||
template <typename InputIterator,
|
template <typename InputIterator,
|
||||||
typename InputSentinel,
|
typename InputSentinel,
|
||||||
typename ResultType = typename std::iterator_traits<InputIterator>::value_type>
|
typename ResultType = std::remove_const_t<typename std::iterator_traits<InputIterator>::value_type>>
|
||||||
GeneratorWrapper<ResultType> from_range(InputIterator from, InputSentinel to) {
|
GeneratorWrapper<ResultType> from_range(InputIterator from, InputSentinel to) {
|
||||||
return GeneratorWrapper<ResultType>(Catch::Detail::make_unique<IteratorGenerator<ResultType>>(from, to));
|
return GeneratorWrapper<ResultType>(Catch::Detail::make_unique<IteratorGenerator<ResultType>>(from, to));
|
||||||
}
|
}
|
||||||
|
@@ -12,7 +12,6 @@
|
|||||||
#include <catch2/internal/catch_stringref.hpp>
|
#include <catch2/internal/catch_stringref.hpp>
|
||||||
|
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <iosfwd>
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
@@ -20,7 +20,6 @@
|
|||||||
#include <map>
|
#include <map>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <iosfwd>
|
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
|
||||||
|
@@ -62,7 +62,7 @@
|
|||||||
# define CATCH_INTERNAL_SUPPRESS_SHADOW_WARNINGS \
|
# define CATCH_INTERNAL_SUPPRESS_SHADOW_WARNINGS \
|
||||||
_Pragma( "GCC diagnostic ignored \"-Wshadow\"" )
|
_Pragma( "GCC diagnostic ignored \"-Wshadow\"" )
|
||||||
|
|
||||||
# define CATCH_INTERNAL_IGNORE_BUT_WARN(...) (void)__builtin_constant_p(__VA_ARGS__)
|
# define CATCH_INTERNAL_CONFIG_USE_BUILTIN_CONSTANT_P
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -86,14 +86,45 @@
|
|||||||
// clang-cl defines _MSC_VER as well as __clang__, which could cause the
|
// clang-cl defines _MSC_VER as well as __clang__, which could cause the
|
||||||
// start/stop internal suppression macros to be double defined.
|
// start/stop internal suppression macros to be double defined.
|
||||||
#if defined(__clang__) && !defined(_MSC_VER)
|
#if defined(__clang__) && !defined(_MSC_VER)
|
||||||
|
# define CATCH_INTERNAL_CONFIG_USE_BUILTIN_CONSTANT_P
|
||||||
# define CATCH_INTERNAL_START_WARNINGS_SUPPRESSION _Pragma( "clang diagnostic push" )
|
# define CATCH_INTERNAL_START_WARNINGS_SUPPRESSION _Pragma( "clang diagnostic push" )
|
||||||
# define CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION _Pragma( "clang diagnostic pop" )
|
# define CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION _Pragma( "clang diagnostic pop" )
|
||||||
|
|
||||||
#endif // __clang__ && !_MSC_VER
|
#endif // __clang__ && !_MSC_VER
|
||||||
|
|
||||||
#if defined(__clang__)
|
#if defined(__clang__)
|
||||||
|
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wexit-time-destructors\"" ) \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wglobal-constructors\"")
|
||||||
|
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wparentheses\"" )
|
||||||
|
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_UNUSED_VARIABLE_WARNINGS \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wunused-variable\"" )
|
||||||
|
|
||||||
|
# if (__clang_major__ >= 20)
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_ZERO_VARIADIC_WARNINGS \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wvariadic-macro-arguments-omitted\"" )
|
||||||
|
# elif (__clang_major__ == 19)
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_ZERO_VARIADIC_WARNINGS \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wc++20-extensions\"" )
|
||||||
|
# else
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_ZERO_VARIADIC_WARNINGS
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wgnu-zero-variadic-macro-arguments\"" )
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wunused-template\"" )
|
||||||
|
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_COMMA_WARNINGS \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wcomma\"" )
|
||||||
|
|
||||||
|
# define CATCH_INTERNAL_SUPPRESS_SHADOW_WARNINGS \
|
||||||
|
_Pragma( "clang diagnostic ignored \"-Wshadow\"" )
|
||||||
|
|
||||||
|
#endif // __clang__
|
||||||
|
|
||||||
// As of this writing, IBM XL's implementation of __builtin_constant_p has a bug
|
// As of this writing, IBM XL's implementation of __builtin_constant_p has a bug
|
||||||
// which results in calls to destructors being emitted for each temporary,
|
// which results in calls to destructors being emitted for each temporary,
|
||||||
// without a matching initialization. In practice, this can result in something
|
// without a matching initialization. In practice, this can result in something
|
||||||
@@ -110,35 +141,11 @@
|
|||||||
// https://developer.nvidia.com/nvidia_bug/3321845.
|
// https://developer.nvidia.com/nvidia_bug/3321845.
|
||||||
//
|
//
|
||||||
// Therefore, `CATCH_INTERNAL_IGNORE_BUT_WARN` is not implemented.
|
// Therefore, `CATCH_INTERNAL_IGNORE_BUT_WARN` is not implemented.
|
||||||
# if !defined(__ibmxl__) && !defined(__CUDACC__) && !defined( __NVCOMPILER )
|
#if defined( __ibmxl__ ) || defined( __CUDACC__ ) || defined( __NVCOMPILER )
|
||||||
# define CATCH_INTERNAL_IGNORE_BUT_WARN(...) (void)__builtin_constant_p(__VA_ARGS__) /* NOLINT(cppcoreguidelines-pro-type-vararg, hicpp-vararg) */
|
# define CATCH_INTERNAL_CONFIG_NO_USE_BUILTIN_CONSTANT_P
|
||||||
# endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
# define CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
|
|
||||||
_Pragma( "clang diagnostic ignored \"-Wexit-time-destructors\"" ) \
|
|
||||||
_Pragma( "clang diagnostic ignored \"-Wglobal-constructors\"")
|
|
||||||
|
|
||||||
# define CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS \
|
|
||||||
_Pragma( "clang diagnostic ignored \"-Wparentheses\"" )
|
|
||||||
|
|
||||||
# define CATCH_INTERNAL_SUPPRESS_UNUSED_VARIABLE_WARNINGS \
|
|
||||||
_Pragma( "clang diagnostic ignored \"-Wunused-variable\"" )
|
|
||||||
|
|
||||||
# define CATCH_INTERNAL_SUPPRESS_ZERO_VARIADIC_WARNINGS \
|
|
||||||
_Pragma( "clang diagnostic ignored \"-Wgnu-zero-variadic-macro-arguments\"" )
|
|
||||||
|
|
||||||
# define CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS \
|
|
||||||
_Pragma( "clang diagnostic ignored \"-Wunused-template\"" )
|
|
||||||
|
|
||||||
# define CATCH_INTERNAL_SUPPRESS_COMMA_WARNINGS \
|
|
||||||
_Pragma( "clang diagnostic ignored \"-Wcomma\"" )
|
|
||||||
|
|
||||||
# define CATCH_INTERNAL_SUPPRESS_SHADOW_WARNINGS \
|
|
||||||
_Pragma( "clang diagnostic ignored \"-Wshadow\"" )
|
|
||||||
|
|
||||||
#endif // __clang__
|
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
// We know some environments not to support full POSIX signals
|
// We know some environments not to support full POSIX signals
|
||||||
@@ -362,6 +369,22 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
// The goal of this macro is to avoid evaluation of the arguments, but
|
||||||
|
// still have the compiler warn on problems inside...
|
||||||
|
#if defined( CATCH_INTERNAL_CONFIG_USE_BUILTIN_CONSTANT_P ) && \
|
||||||
|
!defined( CATCH_INTERNAL_CONFIG_NO_USE_BUILTIN_CONSTANT_P ) && !defined(CATCH_CONFIG_USE_BUILTIN_CONSTANT_P)
|
||||||
|
#define CATCH_CONFIG_USE_BUILTIN_CONSTANT_P
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined( CATCH_CONFIG_USE_BUILTIN_CONSTANT_P ) && \
|
||||||
|
!defined( CATCH_CONFIG_NO_USE_BUILTIN_CONSTANT_P )
|
||||||
|
# define CATCH_INTERNAL_IGNORE_BUT_WARN( ... ) \
|
||||||
|
(void)__builtin_constant_p( __VA_ARGS__ ) /* NOLINT(cppcoreguidelines-pro-type-vararg, \
|
||||||
|
hicpp-vararg) */
|
||||||
|
#else
|
||||||
|
# define CATCH_INTERNAL_IGNORE_BUT_WARN( ... )
|
||||||
|
#endif
|
||||||
|
|
||||||
// Even if we do not think the compiler has that warning, we still have
|
// Even if we do not think the compiler has that warning, we still have
|
||||||
// to provide a macro that can be used by the code.
|
// to provide a macro that can be used by the code.
|
||||||
#if !defined(CATCH_INTERNAL_START_WARNINGS_SUPPRESSION)
|
#if !defined(CATCH_INTERNAL_START_WARNINGS_SUPPRESSION)
|
||||||
@@ -398,13 +421,6 @@
|
|||||||
# define CATCH_INTERNAL_SUPPRESS_SHADOW_WARNINGS
|
# define CATCH_INTERNAL_SUPPRESS_SHADOW_WARNINGS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
// The goal of this macro is to avoid evaluation of the arguments, but
|
|
||||||
// still have the compiler warn on problems inside...
|
|
||||||
#if !defined(CATCH_INTERNAL_IGNORE_BUT_WARN)
|
|
||||||
# define CATCH_INTERNAL_IGNORE_BUT_WARN(...)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(__APPLE__) && defined(__apple_build_version__) && (__clang_major__ < 10)
|
#if defined(__APPLE__) && defined(__apple_build_version__) && (__clang_major__ < 10)
|
||||||
# undef CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS
|
# undef CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS
|
||||||
#elif defined(__clang__) && (__clang_major__ < 5)
|
#elif defined(__clang__) && (__clang_major__ < 5)
|
||||||
|
@@ -161,7 +161,7 @@ namespace {
|
|||||||
#endif // Windows/ ANSI/ None
|
#endif // Windows/ ANSI/ None
|
||||||
|
|
||||||
|
|
||||||
#if defined( CATCH_PLATFORM_LINUX ) || defined( CATCH_PLATFORM_MAC )
|
#if defined( CATCH_PLATFORM_LINUX ) || defined( CATCH_PLATFORM_MAC ) || defined( __GLIBC__ )
|
||||||
# define CATCH_INTERNAL_HAS_ISATTY
|
# define CATCH_INTERNAL_HAS_ISATTY
|
||||||
# include <unistd.h>
|
# include <unistd.h>
|
||||||
#endif
|
#endif
|
||||||
|
@@ -45,7 +45,7 @@
|
|||||||
* when the compiler handles `ExprLhs<T> == b`, it also tries to resolve
|
* when the compiler handles `ExprLhs<T> == b`, it also tries to resolve
|
||||||
* the overload set for `b == ExprLhs<T>`.
|
* the overload set for `b == ExprLhs<T>`.
|
||||||
*
|
*
|
||||||
* To accomodate these use cases, decomposer ended up rather complex.
|
* To accommodate these use cases, decomposer ended up rather complex.
|
||||||
*
|
*
|
||||||
* 1) These types are handled by adding SFINAE overloads to our comparison
|
* 1) These types are handled by adding SFINAE overloads to our comparison
|
||||||
* operators, checking whether `T == U` are comparable with the given
|
* operators, checking whether `T == U` are comparable with the given
|
||||||
@@ -163,7 +163,7 @@ namespace Catch {
|
|||||||
public:
|
public:
|
||||||
constexpr auto isBinaryExpression() const -> bool { return m_isBinaryExpression; }
|
constexpr auto isBinaryExpression() const -> bool { return m_isBinaryExpression; }
|
||||||
constexpr auto getResult() const -> bool { return m_result; }
|
constexpr auto getResult() const -> bool { return m_result; }
|
||||||
//! This function **has** to be overriden by the derived class.
|
//! This function **has** to be overridden by the derived class.
|
||||||
virtual void streamReconstructedExpression( std::ostream& os ) const;
|
virtual void streamReconstructedExpression( std::ostream& os ) const;
|
||||||
|
|
||||||
constexpr ITransientExpression( bool isBinaryExpression, bool result )
|
constexpr ITransientExpression( bool isBinaryExpression, bool result )
|
||||||
|
@@ -12,7 +12,7 @@
|
|||||||
#include <catch2/internal/catch_compiler_capabilities.hpp>
|
#include <catch2/internal/catch_compiler_capabilities.hpp>
|
||||||
#include <catch2/internal/catch_reusable_string_stream.hpp>
|
#include <catch2/internal/catch_reusable_string_stream.hpp>
|
||||||
|
|
||||||
#include <exception>
|
#include <exception> // for `std::exception` in no-exception configuration
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
#if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
|
#if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
|
||||||
|
@@ -11,7 +11,6 @@
|
|||||||
#include <catch2/interfaces/catch_interfaces_exception.hpp>
|
#include <catch2/interfaces/catch_interfaces_exception.hpp>
|
||||||
#include <catch2/internal/catch_unique_ptr.hpp>
|
#include <catch2/internal/catch_unique_ptr.hpp>
|
||||||
|
|
||||||
#include <vector>
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
@@ -8,8 +8,8 @@
|
|||||||
#ifndef CATCH_IS_PERMUTATION_HPP_INCLUDED
|
#ifndef CATCH_IS_PERMUTATION_HPP_INCLUDED
|
||||||
#define CATCH_IS_PERMUTATION_HPP_INCLUDED
|
#define CATCH_IS_PERMUTATION_HPP_INCLUDED
|
||||||
|
|
||||||
#include <algorithm>
|
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
|
#include <type_traits>
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
namespace Detail {
|
namespace Detail {
|
||||||
|
@@ -14,8 +14,6 @@
|
|||||||
|
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <sstream>
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
|
||||||
|
@@ -12,8 +12,6 @@
|
|||||||
#include <catch2/internal/catch_unique_ptr.hpp>
|
#include <catch2/internal/catch_unique_ptr.hpp>
|
||||||
|
|
||||||
#include <iosfwd>
|
#include <iosfwd>
|
||||||
#include <cstddef>
|
|
||||||
#include <ostream>
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
@@ -52,7 +52,7 @@ namespace {
|
|||||||
SimplePcg32::result_type SimplePcg32::operator()() {
|
SimplePcg32::result_type SimplePcg32::operator()() {
|
||||||
// prepare the output value
|
// prepare the output value
|
||||||
const uint32_t xorshifted = static_cast<uint32_t>(((m_state >> 18u) ^ m_state) >> 27u);
|
const uint32_t xorshifted = static_cast<uint32_t>(((m_state >> 18u) ^ m_state) >> 27u);
|
||||||
const auto output = rotate_right(xorshifted, m_state >> 59u);
|
const auto output = rotate_right(xorshifted, static_cast<uint32_t>(m_state >> 59u));
|
||||||
|
|
||||||
// advance state
|
// advance state
|
||||||
m_state = m_state * 6364136223846793005ULL + s_inc;
|
m_state = m_state * 6364136223846793005ULL + s_inc;
|
||||||
|
@@ -361,7 +361,7 @@ namespace Catch {
|
|||||||
auto& currentTracker = m_trackerContext.currentTracker();
|
auto& currentTracker = m_trackerContext.currentTracker();
|
||||||
assert(
|
assert(
|
||||||
currentTracker.nameAndLocation() != nameAndLoc &&
|
currentTracker.nameAndLocation() != nameAndLoc &&
|
||||||
"Trying to create tracker for a genreator that already has one" );
|
"Trying to create tracker for a generator that already has one" );
|
||||||
|
|
||||||
auto newTracker = Catch::Detail::make_unique<Generators::GeneratorTracker>(
|
auto newTracker = Catch::Detail::make_unique<Generators::GeneratorTracker>(
|
||||||
CATCH_MOVE(nameAndLoc), m_trackerContext, ¤tTracker );
|
CATCH_MOVE(nameAndLoc), m_trackerContext, ¤tTracker );
|
||||||
|
@@ -62,7 +62,7 @@ namespace Catch {
|
|||||||
#else
|
#else
|
||||||
|
|
||||||
// These section definitions imply that at most one section at one level
|
// These section definitions imply that at most one section at one level
|
||||||
// will be intered (because only one section's __LINE__ can be equal to
|
// will be entered (because only one section's __LINE__ can be equal to
|
||||||
// the dummy `catchInternalSectionHint` variable from `TEST_CASE`).
|
// the dummy `catchInternalSectionHint` variable from `TEST_CASE`).
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
@@ -9,7 +9,6 @@
|
|||||||
#define CATCH_SHARDING_HPP_INCLUDED
|
#define CATCH_SHARDING_HPP_INCLUDED
|
||||||
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cmath>
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
@@ -74,7 +74,7 @@ namespace Catch {
|
|||||||
std::string origStr = CATCH_MOVE(str);
|
std::string origStr = CATCH_MOVE(str);
|
||||||
str.clear();
|
str.clear();
|
||||||
// There is at least one replacement, so reserve with the best guess
|
// There is at least one replacement, so reserve with the best guess
|
||||||
// we can make without actually counting the number of occurences.
|
// we can make without actually counting the number of occurrences.
|
||||||
str.reserve(origStr.size() - replaceThis.size() + withThis.size());
|
str.reserve(origStr.size() - replaceThis.size() + withThis.size());
|
||||||
do {
|
do {
|
||||||
str.append(origStr, copyBegin, i-copyBegin );
|
str.append(origStr, copyBegin, i-copyBegin );
|
||||||
|
@@ -10,7 +10,6 @@
|
|||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <ostream>
|
#include <ostream>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include <cstdint>
|
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
StringRef::StringRef( char const* rawChars ) noexcept
|
StringRef::StringRef( char const* rawChars ) noexcept
|
||||||
|
@@ -79,7 +79,7 @@ namespace Catch {
|
|||||||
//! Creates a matcher that accepts ranges/containers with specific size
|
//! Creates a matcher that accepts ranges/containers with specific size
|
||||||
HasSizeMatcher SizeIs(std::size_t sz);
|
HasSizeMatcher SizeIs(std::size_t sz);
|
||||||
template <typename Matcher>
|
template <typename Matcher>
|
||||||
std::enable_if_t<Detail::is_matcher<Matcher>::value,
|
std::enable_if_t<Detail::is_matcher_v<Matcher>,
|
||||||
SizeMatchesMatcher<Matcher>> SizeIs(Matcher&& m) {
|
SizeMatchesMatcher<Matcher>> SizeIs(Matcher&& m) {
|
||||||
return SizeMatchesMatcher<Matcher>{CATCH_FORWARD(m)};
|
return SizeMatchesMatcher<Matcher>{CATCH_FORWARD(m)};
|
||||||
}
|
}
|
||||||
|
@@ -11,8 +11,8 @@
|
|||||||
#include <catch2/matchers/catch_matchers_templated.hpp>
|
#include <catch2/matchers/catch_matchers_templated.hpp>
|
||||||
#include <catch2/internal/catch_move_and_forward.hpp>
|
#include <catch2/internal/catch_move_and_forward.hpp>
|
||||||
|
|
||||||
#include <algorithm>
|
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
#include <type_traits>
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
namespace Matchers {
|
namespace Matchers {
|
||||||
@@ -74,14 +74,14 @@ namespace Catch {
|
|||||||
* Uses `std::equal_to` to do the comparison
|
* Uses `std::equal_to` to do the comparison
|
||||||
*/
|
*/
|
||||||
template <typename T>
|
template <typename T>
|
||||||
std::enable_if_t<!Detail::is_matcher<T>::value,
|
std::enable_if_t<!Detail::is_matcher_v<T>,
|
||||||
ContainsElementMatcher<T, std::equal_to<>>> Contains(T&& elem) {
|
ContainsElementMatcher<T, std::equal_to<>>> Contains(T&& elem) {
|
||||||
return { CATCH_FORWARD(elem), std::equal_to<>{} };
|
return { CATCH_FORWARD(elem), std::equal_to<>{} };
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Creates a matcher that checks whether a range contains element matching a matcher
|
//! Creates a matcher that checks whether a range contains element matching a matcher
|
||||||
template <typename Matcher>
|
template <typename Matcher>
|
||||||
std::enable_if_t<Detail::is_matcher<Matcher>::value,
|
std::enable_if_t<Detail::is_matcher_v<Matcher>,
|
||||||
ContainsMatcherMatcher<Matcher>> Contains(Matcher&& matcher) {
|
ContainsMatcherMatcher<Matcher>> Contains(Matcher&& matcher) {
|
||||||
return { CATCH_FORWARD(matcher) };
|
return { CATCH_FORWARD(matcher) };
|
||||||
}
|
}
|
||||||
|
@@ -11,8 +11,7 @@
|
|||||||
#include <catch2/internal/catch_is_permutation.hpp>
|
#include <catch2/internal/catch_is_permutation.hpp>
|
||||||
#include <catch2/matchers/catch_matchers_templated.hpp>
|
#include <catch2/matchers/catch_matchers_templated.hpp>
|
||||||
|
|
||||||
#include <algorithm>
|
#include <functional>
|
||||||
#include <utility>
|
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
namespace Matchers {
|
namespace Matchers {
|
||||||
@@ -96,56 +95,65 @@ namespace Catch {
|
|||||||
* Creates a matcher that checks if all elements in a range are equal
|
* Creates a matcher that checks if all elements in a range are equal
|
||||||
* to all elements in another range.
|
* to all elements in another range.
|
||||||
*
|
*
|
||||||
* Uses `std::equal_to` to do the comparison
|
* Uses the provided predicate `predicate` to do the comparisons
|
||||||
|
* (defaulting to `std::equal_to`)
|
||||||
*/
|
*/
|
||||||
template <typename RangeLike>
|
template <typename RangeLike,
|
||||||
constexpr
|
typename Equality = decltype( std::equal_to<>{} )>
|
||||||
std::enable_if_t<!Detail::is_matcher<RangeLike>::value,
|
|
||||||
RangeEqualsMatcher<RangeLike, std::equal_to<>>>
|
|
||||||
RangeEquals( RangeLike&& range ) {
|
|
||||||
return { CATCH_FORWARD( range ), std::equal_to<>{} };
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a matcher that checks if all elements in a range are equal
|
|
||||||
* to all elements in another range.
|
|
||||||
*
|
|
||||||
* Uses to provided predicate `predicate` to do the comparisons
|
|
||||||
*/
|
|
||||||
template <typename RangeLike, typename Equality>
|
|
||||||
constexpr
|
constexpr
|
||||||
RangeEqualsMatcher<RangeLike, Equality>
|
RangeEqualsMatcher<RangeLike, Equality>
|
||||||
RangeEquals( RangeLike&& range, Equality&& predicate ) {
|
RangeEquals( RangeLike&& range,
|
||||||
|
Equality&& predicate = std::equal_to<>{} ) {
|
||||||
return { CATCH_FORWARD( range ), CATCH_FORWARD( predicate ) };
|
return { CATCH_FORWARD( range ), CATCH_FORWARD( predicate ) };
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a matcher that checks if all elements in a range are equal
|
* Creates a matcher that checks if all elements in a range are equal
|
||||||
* to all elements in another range, in some permutation
|
* to all elements in an initializer list.
|
||||||
*
|
*
|
||||||
* Uses `std::equal_to` to do the comparison
|
* Uses the provided predicate `predicate` to do the comparisons
|
||||||
|
* (defaulting to `std::equal_to`)
|
||||||
*/
|
*/
|
||||||
template <typename RangeLike>
|
template <typename T,
|
||||||
|
typename Equality = decltype( std::equal_to<>{} )>
|
||||||
constexpr
|
constexpr
|
||||||
std::enable_if_t<
|
RangeEqualsMatcher<std::initializer_list<T>, Equality>
|
||||||
!Detail::is_matcher<RangeLike>::value,
|
RangeEquals( std::initializer_list<T> range,
|
||||||
UnorderedRangeEqualsMatcher<RangeLike, std::equal_to<>>>
|
Equality&& predicate = std::equal_to<>{} ) {
|
||||||
UnorderedRangeEquals( RangeLike&& range ) {
|
return { range, CATCH_FORWARD( predicate ) };
|
||||||
return { CATCH_FORWARD( range ), std::equal_to<>{} };
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a matcher that checks if all elements in a range are equal
|
* Creates a matcher that checks if all elements in a range are equal
|
||||||
* to all elements in another range, in some permutation.
|
* to all elements in another range, in some permutation.
|
||||||
*
|
*
|
||||||
* Uses to provided predicate `predicate` to do the comparisons
|
* Uses the provided predicate `predicate` to do the comparisons
|
||||||
|
* (defaulting to `std::equal_to`)
|
||||||
*/
|
*/
|
||||||
template <typename RangeLike, typename Equality>
|
template <typename RangeLike,
|
||||||
|
typename Equality = decltype( std::equal_to<>{} )>
|
||||||
constexpr
|
constexpr
|
||||||
UnorderedRangeEqualsMatcher<RangeLike, Equality>
|
UnorderedRangeEqualsMatcher<RangeLike, Equality>
|
||||||
UnorderedRangeEquals( RangeLike&& range, Equality&& predicate ) {
|
UnorderedRangeEquals( RangeLike&& range,
|
||||||
|
Equality&& predicate = std::equal_to<>{} ) {
|
||||||
return { CATCH_FORWARD( range ), CATCH_FORWARD( predicate ) };
|
return { CATCH_FORWARD( range ), CATCH_FORWARD( predicate ) };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a matcher that checks if all elements in a range are equal
|
||||||
|
* to all elements in an initializer list, in some permutation.
|
||||||
|
*
|
||||||
|
* Uses the provided predicate `predicate` to do the comparisons
|
||||||
|
* (defaulting to `std::equal_to`)
|
||||||
|
*/
|
||||||
|
template <typename T,
|
||||||
|
typename Equality = decltype( std::equal_to<>{} )>
|
||||||
|
constexpr
|
||||||
|
UnorderedRangeEqualsMatcher<std::initializer_list<T>, Equality>
|
||||||
|
UnorderedRangeEquals( std::initializer_list<T> range,
|
||||||
|
Equality&& predicate = std::equal_to<>{} ) {
|
||||||
|
return { range, CATCH_FORWARD( predicate ) };
|
||||||
|
}
|
||||||
} // namespace Matchers
|
} // namespace Matchers
|
||||||
} // namespace Catch
|
} // namespace Catch
|
||||||
|
|
||||||
|
@@ -58,19 +58,19 @@ namespace Matchers {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
using is_generic_matcher = std::is_base_of<
|
static constexpr bool is_generic_matcher_v = std::is_base_of<
|
||||||
Catch::Matchers::MatcherGenericBase,
|
Catch::Matchers::MatcherGenericBase,
|
||||||
std::remove_cv_t<std::remove_reference_t<T>>
|
std::remove_cv_t<std::remove_reference_t<T>>
|
||||||
>;
|
>::value;
|
||||||
|
|
||||||
template<typename... Ts>
|
template<typename... Ts>
|
||||||
using are_generic_matchers = Catch::Detail::conjunction<is_generic_matcher<Ts>...>;
|
static constexpr bool are_generic_matchers_v = Catch::Detail::conjunction<std::integral_constant<bool,is_generic_matcher_v<Ts>>...>::value;
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
using is_matcher = std::is_base_of<
|
static constexpr bool is_matcher_v = std::is_base_of<
|
||||||
Catch::Matchers::MatcherUntypedBase,
|
Catch::Matchers::MatcherUntypedBase,
|
||||||
std::remove_cv_t<std::remove_reference_t<T>>
|
std::remove_cv_t<std::remove_reference_t<T>>
|
||||||
>;
|
>::value;
|
||||||
|
|
||||||
|
|
||||||
template<std::size_t N, typename Arg>
|
template<std::size_t N, typename Arg>
|
||||||
@@ -143,7 +143,7 @@ namespace Matchers {
|
|||||||
|
|
||||||
//! Avoids type nesting for `GenericAllOf && some matcher` case
|
//! Avoids type nesting for `GenericAllOf && some matcher` case
|
||||||
template<typename MatcherRHS>
|
template<typename MatcherRHS>
|
||||||
friend std::enable_if_t<is_matcher<MatcherRHS>::value,
|
friend std::enable_if_t<is_matcher_v<MatcherRHS>,
|
||||||
MatchAllOfGeneric<MatcherTs..., MatcherRHS>> operator && (
|
MatchAllOfGeneric<MatcherTs..., MatcherRHS>> operator && (
|
||||||
MatchAllOfGeneric<MatcherTs...>&& lhs,
|
MatchAllOfGeneric<MatcherTs...>&& lhs,
|
||||||
MatcherRHS const& rhs) {
|
MatcherRHS const& rhs) {
|
||||||
@@ -152,7 +152,7 @@ namespace Matchers {
|
|||||||
|
|
||||||
//! Avoids type nesting for `some matcher && GenericAllOf` case
|
//! Avoids type nesting for `some matcher && GenericAllOf` case
|
||||||
template<typename MatcherLHS>
|
template<typename MatcherLHS>
|
||||||
friend std::enable_if_t<is_matcher<MatcherLHS>::value,
|
friend std::enable_if_t<is_matcher_v<MatcherLHS>,
|
||||||
MatchAllOfGeneric<MatcherLHS, MatcherTs...>> operator && (
|
MatchAllOfGeneric<MatcherLHS, MatcherTs...>> operator && (
|
||||||
MatcherLHS const& lhs,
|
MatcherLHS const& lhs,
|
||||||
MatchAllOfGeneric<MatcherTs...>&& rhs) {
|
MatchAllOfGeneric<MatcherTs...>&& rhs) {
|
||||||
@@ -197,7 +197,7 @@ namespace Matchers {
|
|||||||
|
|
||||||
//! Avoids type nesting for `GenericAnyOf || some matcher` case
|
//! Avoids type nesting for `GenericAnyOf || some matcher` case
|
||||||
template<typename MatcherRHS>
|
template<typename MatcherRHS>
|
||||||
friend std::enable_if_t<is_matcher<MatcherRHS>::value,
|
friend std::enable_if_t<is_matcher_v<MatcherRHS>,
|
||||||
MatchAnyOfGeneric<MatcherTs..., MatcherRHS>> operator || (
|
MatchAnyOfGeneric<MatcherTs..., MatcherRHS>> operator || (
|
||||||
MatchAnyOfGeneric<MatcherTs...>&& lhs,
|
MatchAnyOfGeneric<MatcherTs...>&& lhs,
|
||||||
MatcherRHS const& rhs) {
|
MatcherRHS const& rhs) {
|
||||||
@@ -206,7 +206,7 @@ namespace Matchers {
|
|||||||
|
|
||||||
//! Avoids type nesting for `some matcher || GenericAnyOf` case
|
//! Avoids type nesting for `some matcher || GenericAnyOf` case
|
||||||
template<typename MatcherLHS>
|
template<typename MatcherLHS>
|
||||||
friend std::enable_if_t<is_matcher<MatcherLHS>::value,
|
friend std::enable_if_t<is_matcher_v<MatcherLHS>,
|
||||||
MatchAnyOfGeneric<MatcherLHS, MatcherTs...>> operator || (
|
MatchAnyOfGeneric<MatcherLHS, MatcherTs...>> operator || (
|
||||||
MatcherLHS const& lhs,
|
MatcherLHS const& lhs,
|
||||||
MatchAnyOfGeneric<MatcherTs...>&& rhs) {
|
MatchAnyOfGeneric<MatcherTs...>&& rhs) {
|
||||||
@@ -246,20 +246,20 @@ namespace Matchers {
|
|||||||
|
|
||||||
// compose only generic matchers
|
// compose only generic matchers
|
||||||
template<typename MatcherLHS, typename MatcherRHS>
|
template<typename MatcherLHS, typename MatcherRHS>
|
||||||
std::enable_if_t<Detail::are_generic_matchers<MatcherLHS, MatcherRHS>::value, Detail::MatchAllOfGeneric<MatcherLHS, MatcherRHS>>
|
std::enable_if_t<Detail::are_generic_matchers_v<MatcherLHS, MatcherRHS>, Detail::MatchAllOfGeneric<MatcherLHS, MatcherRHS>>
|
||||||
operator && (MatcherLHS const& lhs, MatcherRHS const& rhs) {
|
operator && (MatcherLHS const& lhs, MatcherRHS const& rhs) {
|
||||||
return { lhs, rhs };
|
return { lhs, rhs };
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename MatcherLHS, typename MatcherRHS>
|
template<typename MatcherLHS, typename MatcherRHS>
|
||||||
std::enable_if_t<Detail::are_generic_matchers<MatcherLHS, MatcherRHS>::value, Detail::MatchAnyOfGeneric<MatcherLHS, MatcherRHS>>
|
std::enable_if_t<Detail::are_generic_matchers_v<MatcherLHS, MatcherRHS>, Detail::MatchAnyOfGeneric<MatcherLHS, MatcherRHS>>
|
||||||
operator || (MatcherLHS const& lhs, MatcherRHS const& rhs) {
|
operator || (MatcherLHS const& lhs, MatcherRHS const& rhs) {
|
||||||
return { lhs, rhs };
|
return { lhs, rhs };
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Wrap provided generic matcher in generic negator
|
//! Wrap provided generic matcher in generic negator
|
||||||
template<typename MatcherT>
|
template<typename MatcherT>
|
||||||
std::enable_if_t<Detail::is_generic_matcher<MatcherT>::value, Detail::MatchNotOfGeneric<MatcherT>>
|
std::enable_if_t<Detail::is_generic_matcher_v<MatcherT>, Detail::MatchNotOfGeneric<MatcherT>>
|
||||||
operator ! (MatcherT const& matcher) {
|
operator ! (MatcherT const& matcher) {
|
||||||
return Detail::MatchNotOfGeneric<MatcherT>{matcher};
|
return Detail::MatchNotOfGeneric<MatcherT>{matcher};
|
||||||
}
|
}
|
||||||
@@ -267,25 +267,25 @@ namespace Matchers {
|
|||||||
|
|
||||||
// compose mixed generic and non-generic matchers
|
// compose mixed generic and non-generic matchers
|
||||||
template<typename MatcherLHS, typename ArgRHS>
|
template<typename MatcherLHS, typename ArgRHS>
|
||||||
std::enable_if_t<Detail::is_generic_matcher<MatcherLHS>::value, Detail::MatchAllOfGeneric<MatcherLHS, MatcherBase<ArgRHS>>>
|
std::enable_if_t<Detail::is_generic_matcher_v<MatcherLHS>, Detail::MatchAllOfGeneric<MatcherLHS, MatcherBase<ArgRHS>>>
|
||||||
operator && (MatcherLHS const& lhs, MatcherBase<ArgRHS> const& rhs) {
|
operator && (MatcherLHS const& lhs, MatcherBase<ArgRHS> const& rhs) {
|
||||||
return { lhs, rhs };
|
return { lhs, rhs };
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename ArgLHS, typename MatcherRHS>
|
template<typename ArgLHS, typename MatcherRHS>
|
||||||
std::enable_if_t<Detail::is_generic_matcher<MatcherRHS>::value, Detail::MatchAllOfGeneric<MatcherBase<ArgLHS>, MatcherRHS>>
|
std::enable_if_t<Detail::is_generic_matcher_v<MatcherRHS>, Detail::MatchAllOfGeneric<MatcherBase<ArgLHS>, MatcherRHS>>
|
||||||
operator && (MatcherBase<ArgLHS> const& lhs, MatcherRHS const& rhs) {
|
operator && (MatcherBase<ArgLHS> const& lhs, MatcherRHS const& rhs) {
|
||||||
return { lhs, rhs };
|
return { lhs, rhs };
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename MatcherLHS, typename ArgRHS>
|
template<typename MatcherLHS, typename ArgRHS>
|
||||||
std::enable_if_t<Detail::is_generic_matcher<MatcherLHS>::value, Detail::MatchAnyOfGeneric<MatcherLHS, MatcherBase<ArgRHS>>>
|
std::enable_if_t<Detail::is_generic_matcher_v<MatcherLHS>, Detail::MatchAnyOfGeneric<MatcherLHS, MatcherBase<ArgRHS>>>
|
||||||
operator || (MatcherLHS const& lhs, MatcherBase<ArgRHS> const& rhs) {
|
operator || (MatcherLHS const& lhs, MatcherBase<ArgRHS> const& rhs) {
|
||||||
return { lhs, rhs };
|
return { lhs, rhs };
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename ArgLHS, typename MatcherRHS>
|
template<typename ArgLHS, typename MatcherRHS>
|
||||||
std::enable_if_t<Detail::is_generic_matcher<MatcherRHS>::value, Detail::MatchAnyOfGeneric<MatcherBase<ArgLHS>, MatcherRHS>>
|
std::enable_if_t<Detail::is_generic_matcher_v<MatcherRHS>, Detail::MatchAnyOfGeneric<MatcherBase<ArgLHS>, MatcherRHS>>
|
||||||
operator || (MatcherBase<ArgLHS> const& lhs, MatcherRHS const& rhs) {
|
operator || (MatcherBase<ArgLHS> const& lhs, MatcherRHS const& rhs) {
|
||||||
return { lhs, rhs };
|
return { lhs, rhs };
|
||||||
}
|
}
|
||||||
|
@@ -16,6 +16,7 @@ configure_file(
|
|||||||
format: 'cmake@',
|
format: 'cmake@',
|
||||||
install_dir: get_option('includedir') / 'catch2',
|
install_dir: get_option('includedir') / 'catch2',
|
||||||
configuration: conf_data,
|
configuration: conf_data,
|
||||||
|
install: get_option('install')
|
||||||
)
|
)
|
||||||
|
|
||||||
fs = import('fs')
|
fs = import('fs')
|
||||||
@@ -339,7 +340,9 @@ foreach file : headers
|
|||||||
endif
|
endif
|
||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
|
if get_option('install')
|
||||||
install_headers(file, subdir: join_paths(include_subdir, folder))
|
install_headers(file, subdir: join_paths(include_subdir, folder))
|
||||||
|
endif
|
||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
catch2_dependencies = []
|
catch2_dependencies = []
|
||||||
@@ -356,7 +359,7 @@ catch2 = static_library(
|
|||||||
sources,
|
sources,
|
||||||
dependencies: catch2_dependencies,
|
dependencies: catch2_dependencies,
|
||||||
include_directories: '..',
|
include_directories: '..',
|
||||||
install: true,
|
install: get_option('install'),
|
||||||
)
|
)
|
||||||
|
|
||||||
catch2_dep = declare_dependency(
|
catch2_dep = declare_dependency(
|
||||||
@@ -364,19 +367,21 @@ catch2_dep = declare_dependency(
|
|||||||
include_directories: '..',
|
include_directories: '..',
|
||||||
)
|
)
|
||||||
|
|
||||||
pkg.generate(
|
if get_option('install')
|
||||||
|
pkg.generate(
|
||||||
catch2,
|
catch2,
|
||||||
filebase: 'catch2',
|
filebase: 'catch2',
|
||||||
description: 'A modern, C++-native, test framework for C++14 and above',
|
description: 'A modern, C++-native, test framework for C++14 and above',
|
||||||
url: 'https://github.com/catchorg/Catch2',
|
url: 'https://github.com/catchorg/Catch2',
|
||||||
)
|
)
|
||||||
|
endif
|
||||||
|
|
||||||
catch2_with_main = static_library(
|
catch2_with_main = static_library(
|
||||||
'Catch2Main',
|
'Catch2Main',
|
||||||
'internal/catch_main.cpp',
|
'internal/catch_main.cpp',
|
||||||
link_with: catch2,
|
link_with: catch2,
|
||||||
include_directories: '..',
|
include_directories: '..',
|
||||||
install: true,
|
install: get_option('install'),
|
||||||
)
|
)
|
||||||
|
|
||||||
catch2_with_main_dep = declare_dependency(
|
catch2_with_main_dep = declare_dependency(
|
||||||
@@ -384,9 +389,11 @@ catch2_with_main_dep = declare_dependency(
|
|||||||
include_directories: '..',
|
include_directories: '..',
|
||||||
)
|
)
|
||||||
|
|
||||||
pkg.generate(
|
if get_option('install')
|
||||||
|
pkg.generate(
|
||||||
catch2_with_main,
|
catch2_with_main,
|
||||||
filebase: 'catch2-with-main',
|
filebase: 'catch2-with-main',
|
||||||
description: 'A modern, C++-native, test framework for C++14 and above (links in default main)',
|
description: 'A modern, C++-native, test framework for C++14 and above (links in default main)',
|
||||||
requires: 'catch2 = ' + meson.project_version(),
|
requires: 'catch2 = ' + meson.project_version(),
|
||||||
)
|
)
|
||||||
|
endif
|
||||||
|
@@ -214,7 +214,7 @@ struct RowBreak {};
|
|||||||
struct OutputFlush {};
|
struct OutputFlush {};
|
||||||
|
|
||||||
class Duration {
|
class Duration {
|
||||||
enum class Unit {
|
enum class Unit : uint8_t {
|
||||||
Auto,
|
Auto,
|
||||||
Nanoseconds,
|
Nanoseconds,
|
||||||
Microseconds,
|
Microseconds,
|
||||||
@@ -286,7 +286,10 @@ public:
|
|||||||
};
|
};
|
||||||
} // end anon namespace
|
} // end anon namespace
|
||||||
|
|
||||||
enum class Justification { Left, Right };
|
enum class Justification : uint8_t {
|
||||||
|
Left,
|
||||||
|
Right
|
||||||
|
};
|
||||||
|
|
||||||
struct ColumnInfo {
|
struct ColumnInfo {
|
||||||
std::string name;
|
std::string name;
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
include(CatchMiscFunctions)
|
include(CatchMiscFunctions)
|
||||||
|
|
||||||
if (CATCH_BUILD_SURROGATES)
|
if(CATCH_BUILD_SURROGATES)
|
||||||
message(STATUS "Configuring targets for surrogate TUs")
|
message(STATUS "Configuring targets for surrogate TUs")
|
||||||
|
|
||||||
# If the folder does not exist before we ask for output redirect to
|
# If the folder does not exist before we ask for output redirect to
|
||||||
@@ -11,11 +11,9 @@ if (CATCH_BUILD_SURROGATES)
|
|||||||
# Returns the path to the generated file.
|
# Returns the path to the generated file.
|
||||||
function(createSurrogateFileTarget sourceHeader pathToFile)
|
function(createSurrogateFileTarget sourceHeader pathToFile)
|
||||||
set(pathPrefix ${PROJECT_SOURCE_DIR}/src)
|
set(pathPrefix ${PROJECT_SOURCE_DIR}/src)
|
||||||
|
|
||||||
file(RELATIVE_PATH includePath ${pathPrefix} ${sourceHeader})
|
file(RELATIVE_PATH includePath ${pathPrefix} ${sourceHeader})
|
||||||
|
|
||||||
get_filename_component(basicFileName "${sourceHeader}" NAME_WE)
|
get_filename_component(basicFileName "${sourceHeader}" NAME_WE)
|
||||||
|
|
||||||
set(surrogateFilePath ${CMAKE_CURRENT_BINARY_DIR}/surrogates/surrogate_${basicFileName}.cpp)
|
set(surrogateFilePath ${CMAKE_CURRENT_BINARY_DIR}/surrogates/surrogate_${basicFileName}.cpp)
|
||||||
|
|
||||||
add_custom_command(
|
add_custom_command(
|
||||||
@@ -41,10 +39,9 @@ if (CATCH_BUILD_SURROGATES)
|
|||||||
set(${OutArg} ${AllHeaders} PARENT_SCOPE)
|
set(${OutArg} ${AllHeaders} PARENT_SCOPE)
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
|
|
||||||
ExtractCatch2Headers(mainHeaders)
|
ExtractCatch2Headers(mainHeaders)
|
||||||
|
|
||||||
if (NOT mainHeaders)
|
if(NOT mainHeaders)
|
||||||
message(FATAL_ERROR "No headers in the main target were detected. Something is broken.")
|
message(FATAL_ERROR "No headers in the main target were detected. Something is broken.")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@@ -53,12 +50,10 @@ if (CATCH_BUILD_SURROGATES)
|
|||||||
list(APPEND surrogateFiles ${pathToGeneratedFile})
|
list(APPEND surrogateFiles ${pathToGeneratedFile})
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
|
|
||||||
add_executable(Catch2SurrogateTarget
|
add_executable(Catch2SurrogateTarget
|
||||||
${surrogateFiles}
|
${surrogateFiles}
|
||||||
)
|
)
|
||||||
target_link_libraries(Catch2SurrogateTarget PRIVATE Catch2WithMain)
|
target_link_libraries(Catch2SurrogateTarget PRIVATE Catch2WithMain)
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
####
|
####
|
||||||
@@ -66,13 +61,10 @@ endif()
|
|||||||
# We need to disable <UseFullPaths> property, but CMake doesn't support it
|
# We need to disable <UseFullPaths> property, but CMake doesn't support it
|
||||||
# until 3.13 (not yet released)
|
# until 3.13 (not yet released)
|
||||||
####
|
####
|
||||||
if (MSVC)
|
if(MSVC)
|
||||||
configure_file(${CATCH_DIR}/tools/misc/SelfTest.vcxproj.user
|
configure_file(${CATCH_DIR}/tools/misc/SelfTest.vcxproj.user ${CMAKE_BINARY_DIR}/tests COPYONLY)
|
||||||
${CMAKE_BINARY_DIR}/tests
|
|
||||||
COPYONLY)
|
|
||||||
endif() #Temporary workaround
|
endif() #Temporary workaround
|
||||||
|
|
||||||
|
|
||||||
# define the sources of the self test
|
# define the sources of the self test
|
||||||
# Please keep these ordered alphabetically
|
# Please keep these ordered alphabetically
|
||||||
set(TEST_SOURCES
|
set(TEST_SOURCES
|
||||||
@@ -134,7 +126,7 @@ set(TEST_SOURCES
|
|||||||
${SELF_TEST_DIR}/UsageTests/VariadicMacros.tests.cpp
|
${SELF_TEST_DIR}/UsageTests/VariadicMacros.tests.cpp
|
||||||
${SELF_TEST_DIR}/UsageTests/MatchersRanges.tests.cpp
|
${SELF_TEST_DIR}/UsageTests/MatchersRanges.tests.cpp
|
||||||
${SELF_TEST_DIR}/UsageTests/Matchers.tests.cpp
|
${SELF_TEST_DIR}/UsageTests/Matchers.tests.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
set(TEST_HEADERS
|
set(TEST_HEADERS
|
||||||
${SELF_TEST_DIR}/helpers/parse_test_spec.hpp
|
${SELF_TEST_DIR}/helpers/parse_test_spec.hpp
|
||||||
@@ -142,7 +134,6 @@ set(TEST_HEADERS
|
|||||||
${SELF_TEST_DIR}/helpers/type_with_lit_0_comparisons.hpp
|
${SELF_TEST_DIR}/helpers/type_with_lit_0_comparisons.hpp
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
# Specify the headers, too, so CLion recognises them as project files
|
# Specify the headers, too, so CLion recognises them as project files
|
||||||
set(HEADERS
|
set(HEADERS
|
||||||
${TOP_LEVEL_HEADERS}
|
${TOP_LEVEL_HEADERS}
|
||||||
@@ -154,22 +145,22 @@ set(HEADERS
|
|||||||
)
|
)
|
||||||
|
|
||||||
# Provide some groupings for IDEs
|
# Provide some groupings for IDEs
|
||||||
#SOURCE_GROUP("benchmark" FILES ${BENCHMARK_HEADERS} ${BENCHMARK_SOURCES})
|
#source_group("benchmark" FILES ${BENCHMARK_HEADERS} ${BENCHMARK_SOURCES})
|
||||||
#SOURCE_GROUP("Tests" FILES ${TEST_SOURCES})
|
#source_group("Tests" FILES ${TEST_SOURCES})
|
||||||
|
|
||||||
include(CTest)
|
include(CTest)
|
||||||
|
|
||||||
add_executable(SelfTest ${TEST_SOURCES} ${TEST_HEADERS})
|
add_executable(SelfTest ${TEST_SOURCES} ${TEST_HEADERS})
|
||||||
target_include_directories(SelfTest PRIVATE ${SELF_TEST_DIR})
|
target_include_directories(SelfTest PRIVATE ${SELF_TEST_DIR})
|
||||||
target_link_libraries(SelfTest PRIVATE Catch2WithMain)
|
target_link_libraries(SelfTest PRIVATE Catch2WithMain)
|
||||||
if (BUILD_SHARED_LIBS AND WIN32)
|
if(BUILD_SHARED_LIBS AND WIN32)
|
||||||
add_custom_command(TARGET SelfTest PRE_LINK
|
add_custom_command(TARGET SelfTest PRE_LINK
|
||||||
COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_FILE:Catch2>
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_FILE:Catch2>
|
||||||
$<TARGET_FILE:Catch2WithMain> $<TARGET_FILE_DIR:SelfTest>
|
$<TARGET_FILE:Catch2WithMain> $<TARGET_FILE_DIR:SelfTest>
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (CATCH_ENABLE_COVERAGE)
|
if(CATCH_ENABLE_COVERAGE)
|
||||||
set(ENABLE_COVERAGE ON CACHE BOOL "Enable coverage build." FORCE)
|
set(ENABLE_COVERAGE ON CACHE BOOL "Enable coverage build." FORCE)
|
||||||
find_package(codecov)
|
find_package(codecov)
|
||||||
add_coverage(SelfTest)
|
add_coverage(SelfTest)
|
||||||
@@ -219,7 +210,6 @@ set_tests_properties(List::Tags::XmlOutput PROPERTIES
|
|||||||
FAIL_REGULAR_EXPRESSION "[0-9]+ tags"
|
FAIL_REGULAR_EXPRESSION "[0-9]+ tags"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
add_test(NAME List::Reporters::Output COMMAND $<TARGET_FILE:SelfTest> --list-reporters)
|
add_test(NAME List::Reporters::Output COMMAND $<TARGET_FILE:SelfTest> --list-reporters)
|
||||||
set_tests_properties(List::Reporters::Output PROPERTIES PASS_REGULAR_EXPRESSION "Available reporters:")
|
set_tests_properties(List::Reporters::Output PROPERTIES PASS_REGULAR_EXPRESSION "Available reporters:")
|
||||||
add_test(NAME List::Reporters::ExitCode COMMAND $<TARGET_FILE:SelfTest> --list-reporters)
|
add_test(NAME List::Reporters::ExitCode COMMAND $<TARGET_FILE:SelfTest> --list-reporters)
|
||||||
@@ -447,7 +437,6 @@ set_tests_properties("Benchmarking::SkipBenchmarkMacros"
|
|||||||
FAIL_REGULAR_EXPRESSION "benchmark name"
|
FAIL_REGULAR_EXPRESSION "benchmark name"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
add_test(NAME "Benchmarking::FailureReporting::OptimizedOut"
|
add_test(NAME "Benchmarking::FailureReporting::OptimizedOut"
|
||||||
COMMAND
|
COMMAND
|
||||||
$<TARGET_FILE:SelfTest> "Failing benchmarks" -c "empty" -r xml
|
$<TARGET_FILE:SelfTest> "Failing benchmarks" -c "empty" -r xml
|
||||||
@@ -510,7 +499,7 @@ set_tests_properties("ErrorHandling::InvalidTestSpecExitsEarly"
|
|||||||
FAIL_REGULAR_EXPRESSION "No tests ran"
|
FAIL_REGULAR_EXPRESSION "No tests ran"
|
||||||
)
|
)
|
||||||
|
|
||||||
if (MSVC)
|
if(MSVC)
|
||||||
set(_NullFile "NUL")
|
set(_NullFile "NUL")
|
||||||
else()
|
else()
|
||||||
set(_NullFile "/dev/null")
|
set(_NullFile "/dev/null")
|
||||||
@@ -519,7 +508,7 @@ endif()
|
|||||||
# This test checks that there is nothing written out from the process,
|
# This test checks that there is nothing written out from the process,
|
||||||
# but if CMake is running the tests under Valgrind or similar tool, then
|
# but if CMake is running the tests under Valgrind or similar tool, then
|
||||||
# that will write its own output to stdout and the test would fail.
|
# that will write its own output to stdout and the test would fail.
|
||||||
if (NOT MEMORYCHECK_COMMAND)
|
if(NOT MEMORYCHECK_COMMAND)
|
||||||
add_test(NAME "MultiReporter::CapturingReportersDontPropagateStdOut"
|
add_test(NAME "MultiReporter::CapturingReportersDontPropagateStdOut"
|
||||||
COMMAND
|
COMMAND
|
||||||
$<TARGET_FILE:SelfTest> "Sends stuff to stdout and stderr"
|
$<TARGET_FILE:SelfTest> "Sends stuff to stdout and stderr"
|
||||||
@@ -608,10 +597,9 @@ set_tests_properties("Reporters::JUnit::NamespacesAreNormalized"
|
|||||||
PASS_REGULAR_EXPRESSION "testcase classname=\"SelfTest(\.exe)?\\.A\\.B\\.TestClass\""
|
PASS_REGULAR_EXPRESSION "testcase classname=\"SelfTest(\.exe)?\\.A\\.B\\.TestClass\""
|
||||||
)
|
)
|
||||||
|
|
||||||
if (CATCH_ENABLE_CONFIGURE_TESTS)
|
if(CATCH_ENABLE_CONFIGURE_TESTS)
|
||||||
foreach(testName "DefaultReporter" "Disable" "DisableStringification"
|
foreach(testName "DefaultReporter" "Disable" "DisableStringification"
|
||||||
"ExperimentalRedirect")
|
"ExperimentalRedirect")
|
||||||
|
|
||||||
add_test(NAME "CMakeConfig::${testName}"
|
add_test(NAME "CMakeConfig::${testName}"
|
||||||
COMMAND
|
COMMAND
|
||||||
"${PYTHON_EXECUTABLE}" "${CMAKE_CURRENT_LIST_DIR}/TestScripts/testConfigure${testName}.py" "${CATCH_DIR}" "${CMAKE_CURRENT_BINARY_DIR}"
|
"${PYTHON_EXECUTABLE}" "${CMAKE_CURRENT_LIST_DIR}/TestScripts/testConfigure${testName}.py" "${CATCH_DIR}" "${CMAKE_CURRENT_BINARY_DIR}"
|
||||||
@@ -621,11 +609,10 @@ if (CATCH_ENABLE_CONFIGURE_TESTS)
|
|||||||
COST 240
|
COST 240
|
||||||
LABELS "uses-python"
|
LABELS "uses-python"
|
||||||
)
|
)
|
||||||
|
|
||||||
endforeach()
|
endforeach()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (CATCH_ENABLE_CMAKE_HELPER_TESTS)
|
if(CATCH_ENABLE_CMAKE_HELPER_TESTS)
|
||||||
add_test(NAME "CMakeHelper::DiscoverTests"
|
add_test(NAME "CMakeHelper::DiscoverTests"
|
||||||
COMMAND
|
COMMAND
|
||||||
"${PYTHON_EXECUTABLE}" "${CMAKE_CURRENT_LIST_DIR}/TestScripts/DiscoverTests/VerifyRegistration.py" "${CATCH_DIR}" "${CMAKE_CURRENT_BINARY_DIR}"
|
"${PYTHON_EXECUTABLE}" "${CMAKE_CURRENT_LIST_DIR}/TestScripts/DiscoverTests/VerifyRegistration.py" "${CATCH_DIR}" "${CMAKE_CURRENT_BINARY_DIR}"
|
||||||
@@ -637,7 +624,7 @@ if (CATCH_ENABLE_CMAKE_HELPER_TESTS)
|
|||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
foreach (reporterName # "Automake" - the simple .trs format does not support any kind of comments/metadata
|
foreach(reporterName # "Automake" - the simple .trs format does not support any kind of comments/metadata
|
||||||
"compact"
|
"compact"
|
||||||
"console"
|
"console"
|
||||||
"JUnit"
|
"JUnit"
|
||||||
@@ -646,14 +633,13 @@ foreach (reporterName # "Automake" - the simple .trs format does not support any
|
|||||||
# "TeamCity" - does not seem to support test suite-level metadata/comments
|
# "TeamCity" - does not seem to support test suite-level metadata/comments
|
||||||
"XML"
|
"XML"
|
||||||
"JSON")
|
"JSON")
|
||||||
|
|
||||||
add_test(NAME "Reporters:Filters:${reporterName}"
|
add_test(NAME "Reporters:Filters:${reporterName}"
|
||||||
COMMAND
|
COMMAND
|
||||||
$<TARGET_FILE:SelfTest> [comparisons][string-case] "CaseInsensitiveLess is case insensitive"
|
$<TARGET_FILE:SelfTest> [comparisons][string-case] "CaseInsensitiveLess is case insensitive"
|
||||||
--reporter ${reporterName}
|
--reporter ${reporterName}
|
||||||
)
|
)
|
||||||
# Different regex for these two reporters, because the commas end up xml-escaped
|
# Different regex for these two reporters, because the commas end up xml-escaped
|
||||||
if (reporterName MATCHES "JUnit|XML")
|
if(reporterName MATCHES "JUnit|XML")
|
||||||
set(testCaseNameFormat ""CaseInsensitiveLess is case insensitive"")
|
set(testCaseNameFormat ""CaseInsensitiveLess is case insensitive"")
|
||||||
elseif(reporterName MATCHES "JSON")
|
elseif(reporterName MATCHES "JSON")
|
||||||
set(testCaseNameFormat "\\\\\"CaseInsensitiveLess is case insensitive\\\\\"")
|
set(testCaseNameFormat "\\\\\"CaseInsensitiveLess is case insensitive\\\\\"")
|
||||||
@@ -675,9 +661,7 @@ foreach (reporterName # "Automake" - the simple .trs format does not support any
|
|||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "18181818"
|
PASS_REGULAR_EXPRESSION "18181818"
|
||||||
)
|
)
|
||||||
|
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
|
|
||||||
list(APPEND CATCH_WARNING_TARGETS SelfTest)
|
list(APPEND CATCH_WARNING_TARGETS SelfTest)
|
||||||
set(CATCH_WARNING_TARGETS ${CATCH_WARNING_TARGETS} PARENT_SCOPE)
|
set(CATCH_WARNING_TARGETS ${CATCH_WARNING_TARGETS} PARENT_SCOPE)
|
||||||
|
@@ -1,13 +1,7 @@
|
|||||||
#
|
cmake_minimum_required(VERSION 3.16)
|
||||||
# Build extra tests.
|
project(Catch2ExtraTests LANGUAGES CXX)
|
||||||
#
|
|
||||||
|
|
||||||
cmake_minimum_required( VERSION 3.10 )
|
|
||||||
|
|
||||||
project( Catch2ExtraTests LANGUAGES CXX )
|
|
||||||
|
|
||||||
message( STATUS "Extra tests included" )
|
|
||||||
|
|
||||||
|
message(STATUS "Extra tests included")
|
||||||
|
|
||||||
add_test(
|
add_test(
|
||||||
NAME TestShardingIntegration
|
NAME TestShardingIntegration
|
||||||
@@ -22,8 +16,7 @@ add_test(
|
|||||||
NAME TestSharding::OverlyLargeShardIndex
|
NAME TestSharding::OverlyLargeShardIndex
|
||||||
COMMAND $<TARGET_FILE:SelfTest> --shard-index 5 --shard-count 5
|
COMMAND $<TARGET_FILE:SelfTest> --shard-index 5 --shard-count 5
|
||||||
)
|
)
|
||||||
set_tests_properties(
|
set_tests_properties(TestSharding::OverlyLargeShardIndex
|
||||||
TestSharding::OverlyLargeShardIndex
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "The shard count \\(5\\) must be greater than the shard index \\(5\\)"
|
PASS_REGULAR_EXPRESSION "The shard count \\(5\\) must be greater than the shard index \\(5\\)"
|
||||||
)
|
)
|
||||||
@@ -32,8 +25,7 @@ set_tests_properties(
|
|||||||
# they have non-trivial execution time, so they are categorized as
|
# they have non-trivial execution time, so they are categorized as
|
||||||
# extra tests, so that they are run less.
|
# extra tests, so that they are run less.
|
||||||
add_test(NAME MinDuration::SimpleThreshold COMMAND $<TARGET_FILE:SelfTest> --min-duration 0.950 [min_duration_test])
|
add_test(NAME MinDuration::SimpleThreshold COMMAND $<TARGET_FILE:SelfTest> --min-duration 0.950 [min_duration_test])
|
||||||
set_tests_properties(
|
set_tests_properties(MinDuration::SimpleThreshold
|
||||||
MinDuration::SimpleThreshold
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "s: sleep_for_1000ms"
|
PASS_REGULAR_EXPRESSION "s: sleep_for_1000ms"
|
||||||
FAIL_REGULAR_EXPRESSION "sleep_for_100ms"
|
FAIL_REGULAR_EXPRESSION "sleep_for_100ms"
|
||||||
@@ -44,8 +36,7 @@ set_tests_properties(
|
|||||||
# -d yes overrides the threshold, so we should see the faster test even
|
# -d yes overrides the threshold, so we should see the faster test even
|
||||||
# with a ridiculous high min duration threshold
|
# with a ridiculous high min duration threshold
|
||||||
add_test(NAME MinDuration::DurationOverrideYes COMMAND $<TARGET_FILE:SelfTest> --min-duration 1.0 -d yes [min_duration_test])
|
add_test(NAME MinDuration::DurationOverrideYes COMMAND $<TARGET_FILE:SelfTest> --min-duration 1.0 -d yes [min_duration_test])
|
||||||
set_tests_properties(
|
set_tests_properties(MinDuration::DurationOverrideYes
|
||||||
MinDuration::DurationOverrideYes
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "s: sleep_for_100ms"
|
PASS_REGULAR_EXPRESSION "s: sleep_for_100ms"
|
||||||
)
|
)
|
||||||
@@ -53,27 +44,24 @@ set_tests_properties(
|
|||||||
# -d no overrides the threshold, so we should never see any tests even
|
# -d no overrides the threshold, so we should never see any tests even
|
||||||
# with ridiculously low min duration threshold
|
# with ridiculously low min duration threshold
|
||||||
add_test(NAME MinDuration::DurationOverrideNo COMMAND $<TARGET_FILE:SelfTest> --min-duration 0.0001 -d no [min_duration_test])
|
add_test(NAME MinDuration::DurationOverrideNo COMMAND $<TARGET_FILE:SelfTest> --min-duration 0.0001 -d no [min_duration_test])
|
||||||
set_tests_properties(
|
set_tests_properties(MinDuration::DurationOverrideNo
|
||||||
MinDuration::DurationOverrideNo
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
FAIL_REGULAR_EXPRESSION "sleep_for_250ms"
|
FAIL_REGULAR_EXPRESSION "sleep_for_250ms"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
# ------------ end of duration reporting tests
|
# ------------ end of duration reporting tests
|
||||||
|
|
||||||
# define folders used:
|
# define folders used:
|
||||||
set( TESTS_DIR ${CATCH_DIR}/tests/ExtraTests )
|
set(TESTS_DIR ${CATCH_DIR}/tests/ExtraTests)
|
||||||
|
|
||||||
add_executable(PrefixedMacros ${TESTS_DIR}/X01-PrefixedMacros.cpp)
|
add_executable(PrefixedMacros ${TESTS_DIR}/X01-PrefixedMacros.cpp)
|
||||||
target_compile_definitions( PrefixedMacros PRIVATE CATCH_CONFIG_PREFIX_ALL CATCH_CONFIG_RUNTIME_STATIC_REQUIRE )
|
target_compile_definitions(PrefixedMacros PRIVATE CATCH_CONFIG_PREFIX_ALL CATCH_CONFIG_RUNTIME_STATIC_REQUIRE)
|
||||||
# Macro configuration does not touch the compiled parts, so we can link
|
# Macro configuration does not touch the compiled parts, so we can link
|
||||||
# it against the main library
|
# it against the main library
|
||||||
target_link_libraries( PrefixedMacros Catch2WithMain )
|
target_link_libraries(PrefixedMacros Catch2WithMain)
|
||||||
|
|
||||||
add_test(NAME CATCH_CONFIG_PREFIX_ALL COMMAND PrefixedMacros -s)
|
add_test(NAME CATCH_CONFIG_PREFIX_ALL COMMAND PrefixedMacros -s)
|
||||||
set_tests_properties(
|
set_tests_properties(CATCH_CONFIG_PREFIX_ALL
|
||||||
CATCH_CONFIG_PREFIX_ALL
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "CATCH_"
|
PASS_REGULAR_EXPRESSION "CATCH_"
|
||||||
FAIL_REGULAR_EXPRESSION
|
FAIL_REGULAR_EXPRESSION
|
||||||
@@ -82,51 +70,47 @@ set_tests_properties(
|
|||||||
" REQUIRE; REQUIRE_FALSE; REQUIRE_THROWS; REQUIRE_THROWS_AS; REQUIRE_THROWS_WITH; REQUIRE_THROWS_MATCHES; REQUIRE_NOTHROW; CHECK; CHECK_FALSE; CHECKED_IF; CHECKED_ELSE; CHECK_NOFAIL; CHECK_THROWS; CHECK_THROWS_AS; CHECK_THROWS_WITH; CHECK_THROWS_MATCHES; CHECK_NOTHROW; REQUIRE_THAT; CHECK_THAT"
|
" REQUIRE; REQUIRE_FALSE; REQUIRE_THROWS; REQUIRE_THROWS_AS; REQUIRE_THROWS_WITH; REQUIRE_THROWS_MATCHES; REQUIRE_NOTHROW; CHECK; CHECK_FALSE; CHECKED_IF; CHECKED_ELSE; CHECK_NOFAIL; CHECK_THROWS; CHECK_THROWS_AS; CHECK_THROWS_WITH; CHECK_THROWS_MATCHES; CHECK_NOTHROW; REQUIRE_THAT; CHECK_THAT"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
add_executable(DisabledMacros ${TESTS_DIR}/X02-DisabledMacros.cpp)
|
add_executable(DisabledMacros ${TESTS_DIR}/X02-DisabledMacros.cpp)
|
||||||
target_compile_definitions( DisabledMacros PRIVATE CATCH_CONFIG_DISABLE )
|
target_compile_definitions(DisabledMacros PRIVATE CATCH_CONFIG_DISABLE)
|
||||||
# Macro configuration does not touch the compiled parts, so we can link
|
# Macro configuration does not touch the compiled parts, so we can link
|
||||||
# it against the main library
|
# it against the main library
|
||||||
target_link_libraries( DisabledMacros Catch2WithMain )
|
target_link_libraries(DisabledMacros Catch2WithMain)
|
||||||
|
|
||||||
add_test(NAME CATCH_CONFIG_DISABLE-1 COMMAND DisabledMacros -s)
|
add_test(NAME CATCH_CONFIG_DISABLE-1 COMMAND DisabledMacros -s)
|
||||||
set_tests_properties(
|
set_tests_properties(CATCH_CONFIG_DISABLE-1
|
||||||
CATCH_CONFIG_DISABLE-1
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "No tests ran"
|
PASS_REGULAR_EXPRESSION "No tests ran"
|
||||||
FAIL_REGULAR_EXPRESSION "This should not happen"
|
FAIL_REGULAR_EXPRESSION "This should not happen"
|
||||||
)
|
)
|
||||||
add_test(NAME CATCH_CONFIG_DISABLE-2 COMMAND DisabledMacros --list-tests)
|
add_test(NAME CATCH_CONFIG_DISABLE-2 COMMAND DisabledMacros --list-tests)
|
||||||
set_tests_properties(
|
set_tests_properties(CATCH_CONFIG_DISABLE-2
|
||||||
CATCH_CONFIG_DISABLE-2
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "0 test cases"
|
PASS_REGULAR_EXPRESSION "0 test cases"
|
||||||
)
|
)
|
||||||
|
|
||||||
add_executable( DisabledExceptions-DefaultHandler ${TESTS_DIR}/X03-DisabledExceptions-DefaultHandler.cpp )
|
add_executable(DisabledExceptions-DefaultHandler ${TESTS_DIR}/X03-DisabledExceptions-DefaultHandler.cpp)
|
||||||
add_executable( DisabledExceptions-CustomHandler ${TESTS_DIR}/X04-DisabledExceptions-CustomHandler.cpp )
|
add_executable(DisabledExceptions-CustomHandler ${TESTS_DIR}/X04-DisabledExceptions-CustomHandler.cpp)
|
||||||
|
|
||||||
foreach(target DisabledExceptions-DefaultHandler DisabledExceptions-CustomHandler)
|
foreach(target DisabledExceptions-DefaultHandler DisabledExceptions-CustomHandler)
|
||||||
target_compile_options( ${target}
|
target_compile_options(${target}
|
||||||
PUBLIC
|
PUBLIC
|
||||||
$<$<CXX_COMPILER_ID:MSVC>:/EHs-c-;/D_HAS_EXCEPTIONS=0>
|
$<$<CXX_COMPILER_ID:MSVC>:/EHs-c-;/D_HAS_EXCEPTIONS=0>
|
||||||
$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:AppleClang>>:-fno-exceptions>
|
$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:GNU>,$<CXX_COMPILER_ID:AppleClang>>:-fno-exceptions>
|
||||||
)
|
)
|
||||||
target_link_libraries(${target} Catch2_buildall_interface)
|
target_link_libraries(${target} Catch2_buildall_interface)
|
||||||
endforeach()
|
endforeach()
|
||||||
target_compile_definitions( DisabledExceptions-CustomHandler PUBLIC CATCH_CONFIG_DISABLE_EXCEPTIONS_CUSTOM_HANDLER )
|
target_compile_definitions(DisabledExceptions-CustomHandler PUBLIC CATCH_CONFIG_DISABLE_EXCEPTIONS_CUSTOM_HANDLER)
|
||||||
|
|
||||||
|
|
||||||
add_test(NAME CATCH_CONFIG_DISABLE_EXCEPTIONS-1 COMMAND DisabledExceptions-DefaultHandler "Tests that run")
|
add_test(NAME CATCH_CONFIG_DISABLE_EXCEPTIONS-1 COMMAND DisabledExceptions-DefaultHandler "Tests that run")
|
||||||
set_tests_properties(
|
set_tests_properties(CATCH_CONFIG_DISABLE_EXCEPTIONS-1
|
||||||
CATCH_CONFIG_DISABLE_EXCEPTIONS-1
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "assertions: 4 \| 2 passed \| 2 failed"
|
PASS_REGULAR_EXPRESSION "assertions: 4 \| 2 passed \| 2 failed"
|
||||||
FAIL_REGULAR_EXPRESSION "abort;terminate;fatal"
|
FAIL_REGULAR_EXPRESSION "abort;terminate;fatal"
|
||||||
)
|
)
|
||||||
|
|
||||||
add_executable( BazelReporter ${TESTS_DIR}/X30-BazelReporter.cpp )
|
add_executable(BazelReporter ${TESTS_DIR}/X30-BazelReporter.cpp)
|
||||||
target_compile_definitions( BazelReporter PRIVATE CATCH_CONFIG_BAZEL_SUPPORT )
|
target_compile_definitions(BazelReporter PRIVATE CATCH_CONFIG_BAZEL_SUPPORT)
|
||||||
target_link_libraries(BazelReporter Catch2_buildall_interface)
|
target_link_libraries(BazelReporter Catch2_buildall_interface)
|
||||||
add_test(NAME CATCH_CONFIG_BAZEL_REPORTER-1
|
add_test(NAME CATCH_CONFIG_BAZEL_REPORTER-1
|
||||||
COMMAND
|
COMMAND
|
||||||
@@ -138,7 +122,7 @@ set_tests_properties(CATCH_CONFIG_BAZEL_REPORTER-1
|
|||||||
)
|
)
|
||||||
|
|
||||||
# We must now test this works without the build flag.
|
# We must now test this works without the build flag.
|
||||||
add_executable( BazelReporterNoCatchConfig ${TESTS_DIR}/X30-BazelReporter.cpp )
|
add_executable(BazelReporterNoCatchConfig ${TESTS_DIR}/X30-BazelReporter.cpp)
|
||||||
target_link_libraries(BazelReporterNoCatchConfig Catch2WithMain)
|
target_link_libraries(BazelReporterNoCatchConfig Catch2WithMain)
|
||||||
add_test(NAME NO_CATCH_CONFIG_BAZEL_REPORTER-1
|
add_test(NAME NO_CATCH_CONFIG_BAZEL_REPORTER-1
|
||||||
COMMAND
|
COMMAND
|
||||||
@@ -160,7 +144,6 @@ set_tests_properties(BazelEnv::TESTBRIDGE_TEST_ONLY
|
|||||||
PASS_REGULAR_EXPRESSION "All tests passed \\(1 assertion in 1 test case\\)"
|
PASS_REGULAR_EXPRESSION "All tests passed \\(1 assertion in 1 test case\\)"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
add_test(NAME BazelEnv::Sharding
|
add_test(NAME BazelEnv::Sharding
|
||||||
COMMAND
|
COMMAND
|
||||||
"${PYTHON_EXECUTABLE}" "${CATCH_DIR}/tests/TestScripts/testBazelSharding.py"
|
"${PYTHON_EXECUTABLE}" "${CATCH_DIR}/tests/TestScripts/testBazelSharding.py"
|
||||||
@@ -172,82 +155,69 @@ set_tests_properties(BazelEnv::Sharding
|
|||||||
LABELS "uses-python"
|
LABELS "uses-python"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
# The default handler on Windows leads to the just-in-time debugger firing,
|
# The default handler on Windows leads to the just-in-time debugger firing,
|
||||||
# which makes this test unsuitable for CI and headless runs, as it opens
|
# which makes this test unsuitable for CI and headless runs, as it opens
|
||||||
# up an interactive dialog.
|
# up an interactive dialog.
|
||||||
if (NOT WIN32)
|
if(NOT WIN32)
|
||||||
add_test(NAME CATCH_CONFIG_DISABLE_EXCEPTIONS-2 COMMAND DisabledExceptions-DefaultHandler "Tests that abort")
|
add_test(NAME CATCH_CONFIG_DISABLE_EXCEPTIONS-2 COMMAND DisabledExceptions-DefaultHandler "Tests that abort")
|
||||||
set_tests_properties(
|
set_tests_properties(CATCH_CONFIG_DISABLE_EXCEPTIONS-2
|
||||||
CATCH_CONFIG_DISABLE_EXCEPTIONS-2
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "Catch will terminate"
|
PASS_REGULAR_EXPRESSION "Catch will terminate"
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
add_test(NAME CATCH_CONFIG_DISABLE_EXCEPTIONS-3 COMMAND DisabledExceptions-CustomHandler "Tests that run")
|
add_test(NAME CATCH_CONFIG_DISABLE_EXCEPTIONS-3 COMMAND DisabledExceptions-CustomHandler "Tests that run")
|
||||||
set_tests_properties(
|
set_tests_properties(CATCH_CONFIG_DISABLE_EXCEPTIONS-3
|
||||||
CATCH_CONFIG_DISABLE_EXCEPTIONS-3
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "assertions: 4 \| 2 passed \| 2 failed"
|
PASS_REGULAR_EXPRESSION "assertions: 4 \| 2 passed \| 2 failed"
|
||||||
FAIL_REGULAR_EXPRESSION "====== CUSTOM HANDLER ======"
|
FAIL_REGULAR_EXPRESSION "====== CUSTOM HANDLER ======"
|
||||||
)
|
)
|
||||||
|
|
||||||
add_test(NAME CATCH_CONFIG_DISABLE_EXCEPTIONS-4 COMMAND DisabledExceptions-CustomHandler "Tests that abort")
|
add_test(NAME CATCH_CONFIG_DISABLE_EXCEPTIONS-4 COMMAND DisabledExceptions-CustomHandler "Tests that abort")
|
||||||
set_tests_properties(
|
set_tests_properties(CATCH_CONFIG_DISABLE_EXCEPTIONS-4
|
||||||
CATCH_CONFIG_DISABLE_EXCEPTIONS-4
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "====== CUSTOM HANDLER ======"
|
PASS_REGULAR_EXPRESSION "====== CUSTOM HANDLER ======"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
add_executable(DeferredStaticChecks ${TESTS_DIR}/X05-DeferredStaticChecks.cpp)
|
add_executable(DeferredStaticChecks ${TESTS_DIR}/X05-DeferredStaticChecks.cpp)
|
||||||
target_link_libraries(DeferredStaticChecks PRIVATE Catch2WithMain)
|
target_link_libraries(DeferredStaticChecks PRIVATE Catch2WithMain)
|
||||||
target_compile_definitions(DeferredStaticChecks PRIVATE "CATCH_CONFIG_RUNTIME_STATIC_REQUIRE")
|
target_compile_definitions(DeferredStaticChecks PRIVATE "CATCH_CONFIG_RUNTIME_STATIC_REQUIRE")
|
||||||
|
|
||||||
add_test(NAME DeferredStaticChecks COMMAND DeferredStaticChecks -r compact)
|
add_test(NAME DeferredStaticChecks COMMAND DeferredStaticChecks -r compact)
|
||||||
set_tests_properties(
|
set_tests_properties(DeferredStaticChecks
|
||||||
DeferredStaticChecks
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "test cases: 1 \\| 1 failed\nassertions: 3 \\| 3 failed"
|
PASS_REGULAR_EXPRESSION "test cases: 1 \\| 1 failed\nassertions: 3 \\| 3 failed"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
add_executable(FallbackStringifier ${TESTS_DIR}/X10-FallbackStringifier.cpp)
|
add_executable(FallbackStringifier ${TESTS_DIR}/X10-FallbackStringifier.cpp)
|
||||||
target_compile_definitions( FallbackStringifier PRIVATE CATCH_CONFIG_FALLBACK_STRINGIFIER=fallbackStringifier )
|
target_compile_definitions(FallbackStringifier PRIVATE CATCH_CONFIG_FALLBACK_STRINGIFIER=fallbackStringifier)
|
||||||
target_link_libraries( FallbackStringifier Catch2WithMain )
|
target_link_libraries(FallbackStringifier Catch2WithMain)
|
||||||
|
|
||||||
add_test(NAME FallbackStringifier COMMAND FallbackStringifier -r compact -s)
|
add_test(NAME FallbackStringifier COMMAND FallbackStringifier -r compact -s)
|
||||||
set_tests_properties(
|
set_tests_properties(FallbackStringifier
|
||||||
FallbackStringifier
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "foo{} for: { !!! }"
|
PASS_REGULAR_EXPRESSION "foo{} for: { !!! }"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
add_executable(DisableStringification ${TESTS_DIR}/X11-DisableStringification.cpp)
|
add_executable(DisableStringification ${TESTS_DIR}/X11-DisableStringification.cpp)
|
||||||
target_compile_definitions( DisableStringification PRIVATE CATCH_CONFIG_DISABLE_STRINGIFICATION )
|
target_compile_definitions(DisableStringification PRIVATE CATCH_CONFIG_DISABLE_STRINGIFICATION)
|
||||||
target_link_libraries(DisableStringification Catch2WithMain)
|
target_link_libraries(DisableStringification Catch2WithMain)
|
||||||
add_test(NAME CATCH_CONFIG_DISABLE_STRINGIFICATION COMMAND DisableStringification -r compact -s)
|
add_test(NAME CATCH_CONFIG_DISABLE_STRINGIFICATION COMMAND DisableStringification -r compact -s)
|
||||||
set_tests_properties(
|
set_tests_properties(CATCH_CONFIG_DISABLE_STRINGIFICATION
|
||||||
CATCH_CONFIG_DISABLE_STRINGIFICATION
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "Disabled by CATCH_CONFIG_DISABLE_STRINGIFICATION"
|
PASS_REGULAR_EXPRESSION "Disabled by CATCH_CONFIG_DISABLE_STRINGIFICATION"
|
||||||
FAIL_REGULAR_EXPRESSION "Hidden{} == Hidden{}"
|
FAIL_REGULAR_EXPRESSION "Hidden{} == Hidden{}"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
# This test touches windows.h, so it should only be compiled under msvc
|
# This test touches windows.h, so it should only be compiled under msvc
|
||||||
if (MSVC)
|
if(MSVC)
|
||||||
# This test fails if it does not compile and succeeds otherwise
|
# This test fails if it does not compile and succeeds otherwise
|
||||||
add_executable(WindowsHeader ${TESTS_DIR}/X90-WindowsHeaderInclusion.cpp)
|
add_executable(WindowsHeader ${TESTS_DIR}/X90-WindowsHeaderInclusion.cpp)
|
||||||
target_link_libraries( WindowsHeader Catch2WithMain )
|
target_link_libraries(WindowsHeader Catch2WithMain)
|
||||||
add_test(NAME WindowsHeader COMMAND WindowsHeader -r compact)
|
add_test(NAME WindowsHeader COMMAND WindowsHeader -r compact)
|
||||||
list(APPEND CATCH_WARNING_TARGETS ${EXTRA_TEST_BINARIES} WindowsHeader)
|
list(APPEND CATCH_WARNING_TARGETS ${EXTRA_TEST_BINARIES} WindowsHeader)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
add_executable(PartialTestCaseEvents ${TESTS_DIR}/X21-PartialTestCaseEvents.cpp)
|
add_executable(PartialTestCaseEvents ${TESTS_DIR}/X21-PartialTestCaseEvents.cpp)
|
||||||
target_link_libraries(PartialTestCaseEvents PRIVATE Catch2WithMain)
|
target_link_libraries(PartialTestCaseEvents PRIVATE Catch2WithMain)
|
||||||
add_test(
|
add_test(
|
||||||
@@ -265,22 +235,19 @@ add_test(
|
|||||||
NAME BenchmarksInCumulativeReporter
|
NAME BenchmarksInCumulativeReporter
|
||||||
COMMAND BenchmarksInCumulativeReporter --reporter testReporter
|
COMMAND BenchmarksInCumulativeReporter --reporter testReporter
|
||||||
)
|
)
|
||||||
set_tests_properties(
|
set_tests_properties(BenchmarksInCumulativeReporter
|
||||||
BenchmarksInCumulativeReporter
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "1\n2\n3\n4\n5\n"
|
PASS_REGULAR_EXPRESSION "1\n2\n3\n4\n5\n"
|
||||||
COST 30
|
COST 30
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
add_executable(CasingInReporterNames ${TESTS_DIR}/X23-CasingInReporterNames.cpp)
|
add_executable(CasingInReporterNames ${TESTS_DIR}/X23-CasingInReporterNames.cpp)
|
||||||
target_link_libraries(CasingInReporterNames PRIVATE Catch2::Catch2WithMain)
|
target_link_libraries(CasingInReporterNames PRIVATE Catch2::Catch2WithMain)
|
||||||
add_test(
|
add_test(
|
||||||
NAME Reporters::registration-is-case-preserving
|
NAME Reporters::registration-is-case-preserving
|
||||||
COMMAND CasingInReporterNames --list-reporters
|
COMMAND CasingInReporterNames --list-reporters
|
||||||
)
|
)
|
||||||
set_tests_properties(
|
set_tests_properties(Reporters::registration-is-case-preserving
|
||||||
Reporters::registration-is-case-preserving
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "testReporterCASED"
|
PASS_REGULAR_EXPRESSION "testReporterCASED"
|
||||||
)
|
)
|
||||||
@@ -288,8 +255,7 @@ add_test(
|
|||||||
NAME Reporters::selection-is-case-insensitive
|
NAME Reporters::selection-is-case-insensitive
|
||||||
COMMAND CasingInReporterNames -r testReportercased
|
COMMAND CasingInReporterNames -r testReportercased
|
||||||
)
|
)
|
||||||
set_tests_properties(
|
set_tests_properties(Reporters::selection-is-case-insensitive
|
||||||
Reporters::selection-is-case-insensitive
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "TestReporter constructed"
|
PASS_REGULAR_EXPRESSION "TestReporter constructed"
|
||||||
)
|
)
|
||||||
@@ -301,15 +267,13 @@ add_test(
|
|||||||
COMMAND CapturedStdoutInTestCaseEvents
|
COMMAND CapturedStdoutInTestCaseEvents
|
||||||
--reporter test-reporter
|
--reporter test-reporter
|
||||||
)
|
)
|
||||||
set_tests_properties(
|
set_tests_properties(Reporters::CapturedStdOutInEvents
|
||||||
Reporters::CapturedStdOutInEvents
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "X27 - TestReporter constructed"
|
PASS_REGULAR_EXPRESSION "X27 - TestReporter constructed"
|
||||||
FAIL_REGULAR_EXPRESSION "X27 ERROR"
|
FAIL_REGULAR_EXPRESSION "X27 ERROR"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if(MSVC)
|
||||||
if (MSVC)
|
|
||||||
set(_NullFile "NUL")
|
set(_NullFile "NUL")
|
||||||
else()
|
else()
|
||||||
set(_NullFile "/dev/null")
|
set(_NullFile "/dev/null")
|
||||||
@@ -321,7 +285,7 @@ target_link_libraries(ListenerStdoutCaptureInMultireporter PRIVATE Catch2::Catch
|
|||||||
# This test checks that there is nothing written out from the process,
|
# This test checks that there is nothing written out from the process,
|
||||||
# but if CMake is running the tests under Valgrind or similar tool, then
|
# but if CMake is running the tests under Valgrind or similar tool, then
|
||||||
# that will write its own output to stdout and the test would fail.
|
# that will write its own output to stdout and the test would fail.
|
||||||
if (NOT MEMORYCHECK_COMMAND)
|
if(NOT MEMORYCHECK_COMMAND)
|
||||||
add_test(
|
add_test(
|
||||||
NAME MultiReporter::NoncapturingListenerDoesntCauseStdoutPassThrough
|
NAME MultiReporter::NoncapturingListenerDoesntCauseStdoutPassThrough
|
||||||
COMMAND ListenerStdoutCaptureInMultireporter
|
COMMAND ListenerStdoutCaptureInMultireporter
|
||||||
@@ -329,15 +293,13 @@ if (NOT MEMORYCHECK_COMMAND)
|
|||||||
--reporter junit::out=${_NullFile}
|
--reporter junit::out=${_NullFile}
|
||||||
)
|
)
|
||||||
|
|
||||||
set_tests_properties(
|
set_tests_properties(MultiReporter::NoncapturingListenerDoesntCauseStdoutPassThrough
|
||||||
MultiReporter::NoncapturingListenerDoesntCauseStdoutPassThrough
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "X24 - NonCapturingListener initialized"
|
PASS_REGULAR_EXPRESSION "X24 - NonCapturingListener initialized"
|
||||||
FAIL_REGULAR_EXPRESSION "X24 - FooBarBaz"
|
FAIL_REGULAR_EXPRESSION "X24 - FooBarBaz"
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
add_executable(ListenerCanAskForCapturedStdout ${TESTS_DIR}/X25-ListenerCanAskForCapturedStdout.cpp)
|
add_executable(ListenerCanAskForCapturedStdout ${TESTS_DIR}/X25-ListenerCanAskForCapturedStdout.cpp)
|
||||||
target_link_libraries(ListenerCanAskForCapturedStdout PRIVATE Catch2::Catch2WithMain)
|
target_link_libraries(ListenerCanAskForCapturedStdout PRIVATE Catch2::Catch2WithMain)
|
||||||
add_test(
|
add_test(
|
||||||
@@ -346,8 +308,7 @@ add_test(
|
|||||||
--reporter compact::out=${_NullFile}
|
--reporter compact::out=${_NullFile}
|
||||||
--reporter console::out=${_NullFile}
|
--reporter console::out=${_NullFile}
|
||||||
)
|
)
|
||||||
set_tests_properties(
|
set_tests_properties(MultiReporter::CapturingListenerCausesStdoutCapture
|
||||||
MultiReporter::CapturingListenerCausesStdoutCapture
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "CapturingListener initialized"
|
PASS_REGULAR_EXPRESSION "CapturingListener initialized"
|
||||||
FAIL_REGULAR_EXPRESSION "X25 - ERROR"
|
FAIL_REGULAR_EXPRESSION "X25 - ERROR"
|
||||||
@@ -360,8 +321,7 @@ add_test(
|
|||||||
COMMAND ReporterPreferencesForPassingAssertionsIsRespected
|
COMMAND ReporterPreferencesForPassingAssertionsIsRespected
|
||||||
--reporter test-reporter
|
--reporter test-reporter
|
||||||
)
|
)
|
||||||
set_tests_properties(
|
set_tests_properties(Reporters::PreferencesForPassingAssertionsIsRespected
|
||||||
Reporters::PreferencesForPassingAssertionsIsRespected
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "X26 - TestReporter constructed"
|
PASS_REGULAR_EXPRESSION "X26 - TestReporter constructed"
|
||||||
FAIL_REGULAR_EXPRESSION "X26 - assertionEnded"
|
FAIL_REGULAR_EXPRESSION "X26 - assertionEnded"
|
||||||
@@ -372,8 +332,7 @@ add_test(
|
|||||||
--reporter test-reporter
|
--reporter test-reporter
|
||||||
--reporter console::out=${_NullFile}
|
--reporter console::out=${_NullFile}
|
||||||
)
|
)
|
||||||
set_tests_properties(
|
set_tests_properties(MultiReporter::PreferencesForPassingAssertionsIsRespected
|
||||||
MultiReporter::PreferencesForPassingAssertionsIsRespected
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "X26 - TestReporter constructed"
|
PASS_REGULAR_EXPRESSION "X26 - TestReporter constructed"
|
||||||
FAIL_REGULAR_EXPRESSION "X26 - assertionEnded"
|
FAIL_REGULAR_EXPRESSION "X26 - assertionEnded"
|
||||||
@@ -385,8 +344,7 @@ add_test(
|
|||||||
NAME ListenersGetEventsBeforeReporters
|
NAME ListenersGetEventsBeforeReporters
|
||||||
COMMAND ListenersGetEventsBeforeReporters --reporter test-reporter
|
COMMAND ListenersGetEventsBeforeReporters --reporter test-reporter
|
||||||
)
|
)
|
||||||
set_tests_properties(
|
set_tests_properties(ListenersGetEventsBeforeReporters
|
||||||
ListenersGetEventsBeforeReporters
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "X28 - TestReporter constructed"
|
PASS_REGULAR_EXPRESSION "X28 - TestReporter constructed"
|
||||||
FAIL_REGULAR_EXPRESSION "X28 - ERROR"
|
FAIL_REGULAR_EXPRESSION "X28 - ERROR"
|
||||||
@@ -399,21 +357,18 @@ add_test(
|
|||||||
COMMAND CustomArgumentsForReporters
|
COMMAND CustomArgumentsForReporters
|
||||||
--reporter "test-reporter::Xa b=c 1::Xz:e = 1234"
|
--reporter "test-reporter::Xa b=c 1::Xz:e = 1234"
|
||||||
)
|
)
|
||||||
set_tests_properties(
|
set_tests_properties(CustomArgumentsForReporters
|
||||||
CustomArgumentsForReporters
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "Xa b=c 1::Xz:e = 1234"
|
PASS_REGULAR_EXPRESSION "Xa b=c 1::Xz:e = 1234"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
add_executable(DuplicatedTestCases-SameNameAndTags ${TESTS_DIR}/X31-DuplicatedTestCases.cpp)
|
add_executable(DuplicatedTestCases-SameNameAndTags ${TESTS_DIR}/X31-DuplicatedTestCases.cpp)
|
||||||
target_link_libraries(DuplicatedTestCases-SameNameAndTags PRIVATE Catch2::Catch2WithMain)
|
target_link_libraries(DuplicatedTestCases-SameNameAndTags PRIVATE Catch2::Catch2WithMain)
|
||||||
add_test(
|
add_test(
|
||||||
NAME DuplicatedTestCases::SameNameAndTags
|
NAME DuplicatedTestCases::SameNameAndTags
|
||||||
COMMAND $<TARGET_FILE:DuplicatedTestCases-SameNameAndTags>
|
COMMAND $<TARGET_FILE:DuplicatedTestCases-SameNameAndTags>
|
||||||
)
|
)
|
||||||
set_tests_properties(
|
set_tests_properties(DuplicatedTestCases::SameNameAndTags
|
||||||
DuplicatedTestCases::SameNameAndTags
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "error: .* already defined\\."
|
PASS_REGULAR_EXPRESSION "error: .* already defined\\."
|
||||||
)
|
)
|
||||||
@@ -424,8 +379,7 @@ add_test(
|
|||||||
NAME DuplicatedTestCases::SameNameDifferentTags
|
NAME DuplicatedTestCases::SameNameDifferentTags
|
||||||
COMMAND $<TARGET_FILE:DuplicatedTestCases-SameNameDifferentTags>
|
COMMAND $<TARGET_FILE:DuplicatedTestCases-SameNameDifferentTags>
|
||||||
)
|
)
|
||||||
set_tests_properties(
|
set_tests_properties(DuplicatedTestCases::SameNameDifferentTags
|
||||||
DuplicatedTestCases::SameNameDifferentTags
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
FAIL_REGULAR_EXPRESSION "error: .* already defined\\."
|
FAIL_REGULAR_EXPRESSION "error: .* already defined\\."
|
||||||
)
|
)
|
||||||
@@ -436,8 +390,7 @@ add_test(
|
|||||||
NAME DuplicatedTestCases::DuplicatedTestCaseMethods
|
NAME DuplicatedTestCases::DuplicatedTestCaseMethods
|
||||||
COMMAND $<TARGET_FILE:DuplicatedTestCases-DuplicatedTestCaseMethods>
|
COMMAND $<TARGET_FILE:DuplicatedTestCases-DuplicatedTestCaseMethods>
|
||||||
)
|
)
|
||||||
set_tests_properties(
|
set_tests_properties(DuplicatedTestCases::DuplicatedTestCaseMethods
|
||||||
DuplicatedTestCases::DuplicatedTestCaseMethods
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "error: .* already defined\\."
|
PASS_REGULAR_EXPRESSION "error: .* already defined\\."
|
||||||
)
|
)
|
||||||
@@ -448,21 +401,18 @@ add_test(
|
|||||||
NAME DuplicatedTestCases::DuplicatedTestCaseMethodsDifferentFixtures
|
NAME DuplicatedTestCases::DuplicatedTestCaseMethodsDifferentFixtures
|
||||||
COMMAND $<TARGET_FILE:DuplicatedTestCases-DifferentFixtures>
|
COMMAND $<TARGET_FILE:DuplicatedTestCases-DifferentFixtures>
|
||||||
)
|
)
|
||||||
set_tests_properties(
|
set_tests_properties(DuplicatedTestCases::DuplicatedTestCaseMethodsDifferentFixtures
|
||||||
DuplicatedTestCases::DuplicatedTestCaseMethodsDifferentFixtures
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
FAIL_REGULAR_EXPRESSION "error: .* already defined\\."
|
FAIL_REGULAR_EXPRESSION "error: .* already defined\\."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
add_executable(DuplicatedReporters ${TESTS_DIR}/X35-DuplicatedReporterNames.cpp)
|
add_executable(DuplicatedReporters ${TESTS_DIR}/X35-DuplicatedReporterNames.cpp)
|
||||||
target_link_libraries(DuplicatedReporters PRIVATE Catch2::Catch2WithMain)
|
target_link_libraries(DuplicatedReporters PRIVATE Catch2::Catch2WithMain)
|
||||||
add_test(
|
add_test(
|
||||||
NAME Reporters::RegistrationErrorsAreCaught
|
NAME Reporters::RegistrationErrorsAreCaught
|
||||||
COMMAND $<TARGET_FILE:DuplicatedReporters>
|
COMMAND $<TARGET_FILE:DuplicatedReporters>
|
||||||
)
|
)
|
||||||
set_tests_properties(
|
set_tests_properties(Reporters::RegistrationErrorsAreCaught
|
||||||
Reporters::RegistrationErrorsAreCaught
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "Errors occurred during startup!"
|
PASS_REGULAR_EXPRESSION "Errors occurred during startup!"
|
||||||
)
|
)
|
||||||
@@ -473,8 +423,7 @@ add_test(
|
|||||||
NAME Reporters::CrashInJunitReporter
|
NAME Reporters::CrashInJunitReporter
|
||||||
COMMAND ${CMAKE_COMMAND} -E env $<TARGET_FILE:ReportingCrashWithJunitReporter> --reporter JUnit
|
COMMAND ${CMAKE_COMMAND} -E env $<TARGET_FILE:ReportingCrashWithJunitReporter> --reporter JUnit
|
||||||
)
|
)
|
||||||
set_tests_properties(
|
set_tests_properties(Reporters::CrashInJunitReporter
|
||||||
Reporters::CrashInJunitReporter
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "</testsuites>"
|
PASS_REGULAR_EXPRESSION "</testsuites>"
|
||||||
LABELS "uses-signals"
|
LABELS "uses-signals"
|
||||||
@@ -494,8 +443,7 @@ add_test(
|
|||||||
#add_executable(DebugBreakMacros ${TESTS_DIR}/X12-CustomDebugBreakMacro.cpp)
|
#add_executable(DebugBreakMacros ${TESTS_DIR}/X12-CustomDebugBreakMacro.cpp)
|
||||||
#target_link_libraries(DebugBreakMacros Catch2)
|
#target_link_libraries(DebugBreakMacros Catch2)
|
||||||
#add_test(NAME DebugBreakMacros COMMAND DebugBreakMacros --break)
|
#add_test(NAME DebugBreakMacros COMMAND DebugBreakMacros --break)
|
||||||
#set_tests_properties(
|
#set_tests_properties(DebugBreakMacros
|
||||||
# DebugBreakMacros
|
|
||||||
# PROPERTIES
|
# PROPERTIES
|
||||||
# PASS_REGULAR_EXPRESSION "Pretty please, break into debugger"
|
# PASS_REGULAR_EXPRESSION "Pretty please, break into debugger"
|
||||||
#)
|
#)
|
||||||
@@ -522,7 +470,6 @@ add_test(
|
|||||||
COMMAND $<TARGET_FILE:NoTests> --list-listeners
|
COMMAND $<TARGET_FILE:NoTests> --list-listeners
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
add_executable(AllSkipped ${TESTS_DIR}/X93-AllSkipped.cpp)
|
add_executable(AllSkipped ${TESTS_DIR}/X93-AllSkipped.cpp)
|
||||||
target_link_libraries(AllSkipped PRIVATE Catch2::Catch2WithMain)
|
target_link_libraries(AllSkipped PRIVATE Catch2::Catch2WithMain)
|
||||||
|
|
||||||
@@ -535,7 +482,7 @@ set_tests_properties(TestSpecs::SkippingAllTestsFails
|
|||||||
WILL_FAIL ON
|
WILL_FAIL ON
|
||||||
)
|
)
|
||||||
|
|
||||||
set( EXTRA_TEST_BINARIES
|
set(EXTRA_TEST_BINARIES
|
||||||
AllSkipped
|
AllSkipped
|
||||||
PrefixedMacros
|
PrefixedMacros
|
||||||
DisabledMacros
|
DisabledMacros
|
||||||
@@ -558,7 +505,6 @@ list(FILTER EXTRA_TEST_BINARIES EXCLUDE REGEX "DisabledExceptions.*")
|
|||||||
list(APPEND CATCH_WARNING_TARGETS ${EXTRA_TEST_BINARIES})
|
list(APPEND CATCH_WARNING_TARGETS ${EXTRA_TEST_BINARIES})
|
||||||
set(CATCH_WARNING_TARGETS ${CATCH_WARNING_TARGETS} PARENT_SCOPE)
|
set(CATCH_WARNING_TARGETS ${CATCH_WARNING_TARGETS} PARENT_SCOPE)
|
||||||
|
|
||||||
|
|
||||||
# This sets up a one-off executable that compiles against the amalgamated
|
# This sets up a one-off executable that compiles against the amalgamated
|
||||||
# files, and then runs it for a super simple check that the amalgamated
|
# files, and then runs it for a super simple check that the amalgamated
|
||||||
# files are usable.
|
# files are usable.
|
||||||
@@ -571,8 +517,7 @@ target_include_directories(AmalgamatedTestCompilation PRIVATE ${CATCH_DIR}/extra
|
|||||||
target_compile_features(AmalgamatedTestCompilation PRIVATE cxx_std_14)
|
target_compile_features(AmalgamatedTestCompilation PRIVATE cxx_std_14)
|
||||||
|
|
||||||
add_test(NAME AmalgamatedFileTest COMMAND AmalgamatedTestCompilation)
|
add_test(NAME AmalgamatedFileTest COMMAND AmalgamatedTestCompilation)
|
||||||
set_tests_properties(
|
set_tests_properties(AmalgamatedFileTest
|
||||||
AmalgamatedFileTest
|
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
PASS_REGULAR_EXPRESSION "All tests passed \\(14 assertions in 3 test cases\\)"
|
PASS_REGULAR_EXPRESSION "All tests passed \\(14 assertions in 3 test cases\\)"
|
||||||
)
|
)
|
||||||
|
@@ -136,8 +136,8 @@ Nor would this
|
|||||||
:test-result: SKIP Empty generators can SKIP in constructor
|
:test-result: SKIP Empty generators can SKIP in constructor
|
||||||
:test-result: PASS Empty stream name opens cout stream
|
:test-result: PASS Empty stream name opens cout stream
|
||||||
:test-result: FAIL EndsWith string matcher
|
:test-result: FAIL EndsWith string matcher
|
||||||
:test-result: PASS Enums can quickly have stringification enabled using REGISTER_ENUM
|
:test-result: PASS Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
:test-result: PASS Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM
|
:test-result: PASS Enums in namespaces can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
:test-result: PASS Epsilon only applies to Approx's value
|
:test-result: PASS Epsilon only applies to Approx's value
|
||||||
:test-result: XFAIL Equality checks that should fail
|
:test-result: XFAIL Equality checks that should fail
|
||||||
:test-result: PASS Equality checks that should succeed
|
:test-result: PASS Equality checks that should succeed
|
||||||
@@ -175,7 +175,7 @@ Nor would this
|
|||||||
:test-result: XFAIL Inequality checks that should fail
|
:test-result: XFAIL Inequality checks that should fail
|
||||||
:test-result: PASS Inequality checks that should succeed
|
:test-result: PASS Inequality checks that should succeed
|
||||||
:test-result: PASS JsonWriter
|
:test-result: PASS JsonWriter
|
||||||
:test-result: PASS JsonWriter escapes charaters in strings properly
|
:test-result: PASS JsonWriter escapes characters in strings properly
|
||||||
:test-result: PASS Lambdas in assertions
|
:test-result: PASS Lambdas in assertions
|
||||||
:test-result: PASS Less-than inequalities with different epsilons
|
:test-result: PASS Less-than inequalities with different epsilons
|
||||||
:test-result: PASS ManuallyRegistered
|
:test-result: PASS ManuallyRegistered
|
||||||
|
@@ -134,8 +134,8 @@
|
|||||||
:test-result: SKIP Empty generators can SKIP in constructor
|
:test-result: SKIP Empty generators can SKIP in constructor
|
||||||
:test-result: PASS Empty stream name opens cout stream
|
:test-result: PASS Empty stream name opens cout stream
|
||||||
:test-result: FAIL EndsWith string matcher
|
:test-result: FAIL EndsWith string matcher
|
||||||
:test-result: PASS Enums can quickly have stringification enabled using REGISTER_ENUM
|
:test-result: PASS Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
:test-result: PASS Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM
|
:test-result: PASS Enums in namespaces can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
:test-result: PASS Epsilon only applies to Approx's value
|
:test-result: PASS Epsilon only applies to Approx's value
|
||||||
:test-result: XFAIL Equality checks that should fail
|
:test-result: XFAIL Equality checks that should fail
|
||||||
:test-result: PASS Equality checks that should succeed
|
:test-result: PASS Equality checks that should succeed
|
||||||
@@ -173,7 +173,7 @@
|
|||||||
:test-result: XFAIL Inequality checks that should fail
|
:test-result: XFAIL Inequality checks that should fail
|
||||||
:test-result: PASS Inequality checks that should succeed
|
:test-result: PASS Inequality checks that should succeed
|
||||||
:test-result: PASS JsonWriter
|
:test-result: PASS JsonWriter
|
||||||
:test-result: PASS JsonWriter escapes charaters in strings properly
|
:test-result: PASS JsonWriter escapes characters in strings properly
|
||||||
:test-result: PASS Lambdas in assertions
|
:test-result: PASS Lambdas in assertions
|
||||||
:test-result: PASS Less-than inequalities with different epsilons
|
:test-result: PASS Less-than inequalities with different epsilons
|
||||||
:test-result: PASS ManuallyRegistered
|
:test-result: PASS ManuallyRegistered
|
||||||
|
@@ -2284,6 +2284,8 @@ MatchersRanges.tests.cpp:<line number>: passed: vector_a, RangeEquals( vector_a_
|
|||||||
MatchersRanges.tests.cpp:<line number>: passed: vector_a, !RangeEquals( vector_b, close_enough ) for: { 1, 2, 3 } not elements are { 3, 3, 4 }
|
MatchersRanges.tests.cpp:<line number>: passed: vector_a, !RangeEquals( vector_b, close_enough ) for: { 1, 2, 3 } not elements are { 3, 3, 4 }
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: needs_adl1, RangeEquals( needs_adl2 ) for: { 1, 2, 3, 4, 5 } elements are { 1, 2, 3, 4, 5 }
|
MatchersRanges.tests.cpp:<line number>: passed: needs_adl1, RangeEquals( needs_adl2 ) for: { 1, 2, 3, 4, 5 } elements are { 1, 2, 3, 4, 5 }
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: needs_adl1, RangeEquals( needs_adl3, []( int l, int r ) { return l + 1 == r; } ) for: { 1, 2, 3, 4, 5 } elements are { 2, 3, 4, 5, 6 }
|
MatchersRanges.tests.cpp:<line number>: passed: needs_adl1, RangeEquals( needs_adl3, []( int l, int r ) { return l + 1 == r; } ) for: { 1, 2, 3, 4, 5 } elements are { 2, 3, 4, 5, 6 }
|
||||||
|
MatchersRanges.tests.cpp:<line number>: passed: array_a, RangeEquals( { 1, 2, 3 } ) for: { 1, 2, 3 } elements are { 1, 2, 3 }
|
||||||
|
MatchersRanges.tests.cpp:<line number>: passed: array_a, RangeEquals( { 2, 4, 6 }, []( int l, int r ) { return l * 2 == r; } ) for: { 1, 2, 3 } elements are { 2, 4, 6 }
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: mocked1, !RangeEquals( arr ) for: { 1, 2, 3, 4 } not elements are { 1, 2, 4, 4 }
|
MatchersRanges.tests.cpp:<line number>: passed: mocked1, !RangeEquals( arr ) for: { 1, 2, 3, 4 } not elements are { 1, 2, 4, 4 }
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: mocked1.m_derefed[0] for: true
|
MatchersRanges.tests.cpp:<line number>: passed: mocked1.m_derefed[0] for: true
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: mocked1.m_derefed[1] for: true
|
MatchersRanges.tests.cpp:<line number>: passed: mocked1.m_derefed[1] for: true
|
||||||
@@ -2304,6 +2306,8 @@ MatchersRanges.tests.cpp:<line number>: passed: vector_a, !UnorderedRangeEquals(
|
|||||||
MatchersRanges.tests.cpp:<line number>: passed: vector_a, UnorderedRangeEquals( vector_a_plus_1, close_enough ) for: { 1, 10, 20 } unordered elements are { 11, 21, 2 }
|
MatchersRanges.tests.cpp:<line number>: passed: vector_a, UnorderedRangeEquals( vector_a_plus_1, close_enough ) for: { 1, 10, 20 } unordered elements are { 11, 21, 2 }
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: vector_a, !UnorderedRangeEquals( vector_b, close_enough ) for: { 1, 10, 21 } not unordered elements are { 11, 21, 3 }
|
MatchersRanges.tests.cpp:<line number>: passed: vector_a, !UnorderedRangeEquals( vector_b, close_enough ) for: { 1, 10, 21 } not unordered elements are { 11, 21, 3 }
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: needs_adl1, UnorderedRangeEquals( needs_adl2 ) for: { 1, 2, 3, 4, 5 } unordered elements are { 1, 2, 3, 4, 5 }
|
MatchersRanges.tests.cpp:<line number>: passed: needs_adl1, UnorderedRangeEquals( needs_adl2 ) for: { 1, 2, 3, 4, 5 } unordered elements are { 1, 2, 3, 4, 5 }
|
||||||
|
MatchersRanges.tests.cpp:<line number>: passed: array_a, UnorderedRangeEquals( { 10, 20, 1 } ) for: { 1, 10, 20 } unordered elements are { 10, 20, 1 }
|
||||||
|
MatchersRanges.tests.cpp:<line number>: passed: array_a, UnorderedRangeEquals( { 11, 21, 2 }, []( int l, int r ) { return std::abs( l - r ) <= 1; } ) for: { 1, 10, 20 } unordered elements are { 11, 21, 2 }
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: empty_vec, SizeIs(0) for: { } has size == 0
|
MatchersRanges.tests.cpp:<line number>: passed: empty_vec, SizeIs(0) for: { } has size == 0
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: empty_vec, !SizeIs(2) for: { } not has size == 2
|
MatchersRanges.tests.cpp:<line number>: passed: empty_vec, !SizeIs(2) for: { } not has size == 2
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: empty_vec, SizeIs(Lt(2)) for: { } size matches is less than 2
|
MatchersRanges.tests.cpp:<line number>: passed: empty_vec, SizeIs(Lt(2)) for: { } size matches is less than 2
|
||||||
@@ -2851,6 +2855,6 @@ InternalBenchmark.tests.cpp:<line number>: passed: q3 == 23. for: 23.0 == 23.0
|
|||||||
Misc.tests.cpp:<line number>: passed:
|
Misc.tests.cpp:<line number>: passed:
|
||||||
Misc.tests.cpp:<line number>: passed:
|
Misc.tests.cpp:<line number>: passed:
|
||||||
test cases: 419 | 313 passed | 86 failed | 6 skipped | 14 failed as expected
|
test cases: 419 | 313 passed | 86 failed | 6 skipped | 14 failed as expected
|
||||||
assertions: 2265 | 2083 passed | 147 failed | 35 failed as expected
|
assertions: 2269 | 2087 passed | 147 failed | 35 failed as expected
|
||||||
|
|
||||||
|
|
||||||
|
@@ -2277,6 +2277,8 @@ MatchersRanges.tests.cpp:<line number>: passed: vector_a, RangeEquals( vector_a_
|
|||||||
MatchersRanges.tests.cpp:<line number>: passed: vector_a, !RangeEquals( vector_b, close_enough ) for: { 1, 2, 3 } not elements are { 3, 3, 4 }
|
MatchersRanges.tests.cpp:<line number>: passed: vector_a, !RangeEquals( vector_b, close_enough ) for: { 1, 2, 3 } not elements are { 3, 3, 4 }
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: needs_adl1, RangeEquals( needs_adl2 ) for: { 1, 2, 3, 4, 5 } elements are { 1, 2, 3, 4, 5 }
|
MatchersRanges.tests.cpp:<line number>: passed: needs_adl1, RangeEquals( needs_adl2 ) for: { 1, 2, 3, 4, 5 } elements are { 1, 2, 3, 4, 5 }
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: needs_adl1, RangeEquals( needs_adl3, []( int l, int r ) { return l + 1 == r; } ) for: { 1, 2, 3, 4, 5 } elements are { 2, 3, 4, 5, 6 }
|
MatchersRanges.tests.cpp:<line number>: passed: needs_adl1, RangeEquals( needs_adl3, []( int l, int r ) { return l + 1 == r; } ) for: { 1, 2, 3, 4, 5 } elements are { 2, 3, 4, 5, 6 }
|
||||||
|
MatchersRanges.tests.cpp:<line number>: passed: array_a, RangeEquals( { 1, 2, 3 } ) for: { 1, 2, 3 } elements are { 1, 2, 3 }
|
||||||
|
MatchersRanges.tests.cpp:<line number>: passed: array_a, RangeEquals( { 2, 4, 6 }, []( int l, int r ) { return l * 2 == r; } ) for: { 1, 2, 3 } elements are { 2, 4, 6 }
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: mocked1, !RangeEquals( arr ) for: { 1, 2, 3, 4 } not elements are { 1, 2, 4, 4 }
|
MatchersRanges.tests.cpp:<line number>: passed: mocked1, !RangeEquals( arr ) for: { 1, 2, 3, 4 } not elements are { 1, 2, 4, 4 }
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: mocked1.m_derefed[0] for: true
|
MatchersRanges.tests.cpp:<line number>: passed: mocked1.m_derefed[0] for: true
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: mocked1.m_derefed[1] for: true
|
MatchersRanges.tests.cpp:<line number>: passed: mocked1.m_derefed[1] for: true
|
||||||
@@ -2297,6 +2299,8 @@ MatchersRanges.tests.cpp:<line number>: passed: vector_a, !UnorderedRangeEquals(
|
|||||||
MatchersRanges.tests.cpp:<line number>: passed: vector_a, UnorderedRangeEquals( vector_a_plus_1, close_enough ) for: { 1, 10, 20 } unordered elements are { 11, 21, 2 }
|
MatchersRanges.tests.cpp:<line number>: passed: vector_a, UnorderedRangeEquals( vector_a_plus_1, close_enough ) for: { 1, 10, 20 } unordered elements are { 11, 21, 2 }
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: vector_a, !UnorderedRangeEquals( vector_b, close_enough ) for: { 1, 10, 21 } not unordered elements are { 11, 21, 3 }
|
MatchersRanges.tests.cpp:<line number>: passed: vector_a, !UnorderedRangeEquals( vector_b, close_enough ) for: { 1, 10, 21 } not unordered elements are { 11, 21, 3 }
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: needs_adl1, UnorderedRangeEquals( needs_adl2 ) for: { 1, 2, 3, 4, 5 } unordered elements are { 1, 2, 3, 4, 5 }
|
MatchersRanges.tests.cpp:<line number>: passed: needs_adl1, UnorderedRangeEquals( needs_adl2 ) for: { 1, 2, 3, 4, 5 } unordered elements are { 1, 2, 3, 4, 5 }
|
||||||
|
MatchersRanges.tests.cpp:<line number>: passed: array_a, UnorderedRangeEquals( { 10, 20, 1 } ) for: { 1, 10, 20 } unordered elements are { 10, 20, 1 }
|
||||||
|
MatchersRanges.tests.cpp:<line number>: passed: array_a, UnorderedRangeEquals( { 11, 21, 2 }, []( int l, int r ) { return std::abs( l - r ) <= 1; } ) for: { 1, 10, 20 } unordered elements are { 11, 21, 2 }
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: empty_vec, SizeIs(0) for: { } has size == 0
|
MatchersRanges.tests.cpp:<line number>: passed: empty_vec, SizeIs(0) for: { } has size == 0
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: empty_vec, !SizeIs(2) for: { } not has size == 2
|
MatchersRanges.tests.cpp:<line number>: passed: empty_vec, !SizeIs(2) for: { } not has size == 2
|
||||||
MatchersRanges.tests.cpp:<line number>: passed: empty_vec, SizeIs(Lt(2)) for: { } size matches is less than 2
|
MatchersRanges.tests.cpp:<line number>: passed: empty_vec, SizeIs(Lt(2)) for: { } size matches is less than 2
|
||||||
@@ -2840,6 +2844,6 @@ InternalBenchmark.tests.cpp:<line number>: passed: q3 == 23. for: 23.0 == 23.0
|
|||||||
Misc.tests.cpp:<line number>: passed:
|
Misc.tests.cpp:<line number>: passed:
|
||||||
Misc.tests.cpp:<line number>: passed:
|
Misc.tests.cpp:<line number>: passed:
|
||||||
test cases: 419 | 313 passed | 86 failed | 6 skipped | 14 failed as expected
|
test cases: 419 | 313 passed | 86 failed | 6 skipped | 14 failed as expected
|
||||||
assertions: 2265 | 2083 passed | 147 failed | 35 failed as expected
|
assertions: 2269 | 2087 passed | 147 failed | 35 failed as expected
|
||||||
|
|
||||||
|
|
||||||
|
@@ -1611,5 +1611,5 @@ due to unexpected exception with message:
|
|||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
test cases: 419 | 327 passed | 71 failed | 7 skipped | 14 failed as expected
|
test cases: 419 | 327 passed | 71 failed | 7 skipped | 14 failed as expected
|
||||||
assertions: 2248 | 2083 passed | 130 failed | 35 failed as expected
|
assertions: 2252 | 2087 passed | 130 failed | 35 failed as expected
|
||||||
|
|
||||||
|
@@ -4083,7 +4083,7 @@ with expansion:
|
|||||||
insensitive)
|
insensitive)
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Enums can quickly have stringification enabled using REGISTER_ENUM
|
Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
EnumToString.tests.cpp:<line number>
|
EnumToString.tests.cpp:<line number>
|
||||||
...............................................................................
|
...............................................................................
|
||||||
@@ -4117,7 +4117,7 @@ with expansion:
|
|||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Enums in namespaces can quickly have stringification enabled using
|
Enums in namespaces can quickly have stringification enabled using
|
||||||
REGISTER_ENUM
|
CATCH_REGISTER_ENUM
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
EnumToString.tests.cpp:<line number>
|
EnumToString.tests.cpp:<line number>
|
||||||
...............................................................................
|
...............................................................................
|
||||||
@@ -7652,7 +7652,7 @@ with expansion:
|
|||||||
""custom"" == ""custom""
|
""custom"" == ""custom""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
Quote in a string is escaped
|
Quote in a string is escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -7664,7 +7664,7 @@ with expansion:
|
|||||||
""\""" == ""\"""
|
""\""" == ""\"""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
Backslash in a string is escaped
|
Backslash in a string is escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -7676,7 +7676,7 @@ with expansion:
|
|||||||
""\\"" == ""\\""
|
""\\"" == ""\\""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
Forward slash in a string is **not** escaped
|
Forward slash in a string is **not** escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -7688,7 +7688,7 @@ with expansion:
|
|||||||
""/"" == ""/""
|
""/"" == ""/""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
Backspace in a string is escaped
|
Backspace in a string is escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -7700,7 +7700,7 @@ with expansion:
|
|||||||
""\b"" == ""\b""
|
""\b"" == ""\b""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
Formfeed in a string is escaped
|
Formfeed in a string is escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -7712,7 +7712,7 @@ with expansion:
|
|||||||
""\f"" == ""\f""
|
""\f"" == ""\f""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
linefeed in a string is escaped
|
linefeed in a string is escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -7724,7 +7724,7 @@ with expansion:
|
|||||||
""\n"" == ""\n""
|
""\n"" == ""\n""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
carriage return in a string is escaped
|
carriage return in a string is escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -7736,7 +7736,7 @@ with expansion:
|
|||||||
""\r"" == ""\r""
|
""\r"" == ""\r""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
tab in a string is escaped
|
tab in a string is escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -7748,7 +7748,7 @@ with expansion:
|
|||||||
""\t"" == ""\t""
|
""\t"" == ""\t""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
combination of characters is escaped
|
combination of characters is escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -14981,6 +14981,23 @@ MatchersRanges.tests.cpp:<line number>: PASSED:
|
|||||||
with expansion:
|
with expansion:
|
||||||
{ 1, 2, 3, 4, 5 } elements are { 2, 3, 4, 5, 6 }
|
{ 1, 2, 3, 4, 5 } elements are { 2, 3, 4, 5, 6 }
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
Usage of RangeEquals range matcher
|
||||||
|
Compare against std::initializer_list
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
MatchersRanges.tests.cpp:<line number>
|
||||||
|
...............................................................................
|
||||||
|
|
||||||
|
MatchersRanges.tests.cpp:<line number>: PASSED:
|
||||||
|
REQUIRE_THAT( array_a, RangeEquals( { 1, 2, 3 } ) )
|
||||||
|
with expansion:
|
||||||
|
{ 1, 2, 3 } elements are { 1, 2, 3 }
|
||||||
|
|
||||||
|
MatchersRanges.tests.cpp:<line number>: PASSED:
|
||||||
|
REQUIRE_THAT( array_a, RangeEquals( { 2, 4, 6 }, []( int l, int r ) { return l * 2 == r; } ) )
|
||||||
|
with expansion:
|
||||||
|
{ 1, 2, 3 } elements are { 2, 4, 6 }
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Usage of RangeEquals range matcher
|
Usage of RangeEquals range matcher
|
||||||
Check short-circuiting behaviour
|
Check short-circuiting behaviour
|
||||||
@@ -15168,6 +15185,23 @@ MatchersRanges.tests.cpp:<line number>: PASSED:
|
|||||||
with expansion:
|
with expansion:
|
||||||
{ 1, 2, 3, 4, 5 } unordered elements are { 1, 2, 3, 4, 5 }
|
{ 1, 2, 3, 4, 5 } unordered elements are { 1, 2, 3, 4, 5 }
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
Usage of UnorderedRangeEquals range matcher
|
||||||
|
Compare against std::initializer_list
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
MatchersRanges.tests.cpp:<line number>
|
||||||
|
...............................................................................
|
||||||
|
|
||||||
|
MatchersRanges.tests.cpp:<line number>: PASSED:
|
||||||
|
REQUIRE_THAT( array_a, UnorderedRangeEquals( { 10, 20, 1 } ) )
|
||||||
|
with expansion:
|
||||||
|
{ 1, 10, 20 } unordered elements are { 10, 20, 1 }
|
||||||
|
|
||||||
|
MatchersRanges.tests.cpp:<line number>: PASSED:
|
||||||
|
REQUIRE_THAT( array_a, UnorderedRangeEquals( { 11, 21, 2 }, []( int l, int r ) { return std::abs( l - r ) <= 1; } ) )
|
||||||
|
with expansion:
|
||||||
|
{ 1, 10, 20 } unordered elements are { 11, 21, 2 }
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Usage of the SizeIs range matcher
|
Usage of the SizeIs range matcher
|
||||||
Some with stdlib containers
|
Some with stdlib containers
|
||||||
@@ -18979,5 +19013,5 @@ Misc.tests.cpp:<line number>: PASSED:
|
|||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
test cases: 419 | 313 passed | 86 failed | 6 skipped | 14 failed as expected
|
test cases: 419 | 313 passed | 86 failed | 6 skipped | 14 failed as expected
|
||||||
assertions: 2265 | 2083 passed | 147 failed | 35 failed as expected
|
assertions: 2269 | 2087 passed | 147 failed | 35 failed as expected
|
||||||
|
|
||||||
|
@@ -4081,7 +4081,7 @@ with expansion:
|
|||||||
insensitive)
|
insensitive)
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Enums can quickly have stringification enabled using REGISTER_ENUM
|
Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
EnumToString.tests.cpp:<line number>
|
EnumToString.tests.cpp:<line number>
|
||||||
...............................................................................
|
...............................................................................
|
||||||
@@ -4115,7 +4115,7 @@ with expansion:
|
|||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Enums in namespaces can quickly have stringification enabled using
|
Enums in namespaces can quickly have stringification enabled using
|
||||||
REGISTER_ENUM
|
CATCH_REGISTER_ENUM
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
EnumToString.tests.cpp:<line number>
|
EnumToString.tests.cpp:<line number>
|
||||||
...............................................................................
|
...............................................................................
|
||||||
@@ -7650,7 +7650,7 @@ with expansion:
|
|||||||
""custom"" == ""custom""
|
""custom"" == ""custom""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
Quote in a string is escaped
|
Quote in a string is escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -7662,7 +7662,7 @@ with expansion:
|
|||||||
""\""" == ""\"""
|
""\""" == ""\"""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
Backslash in a string is escaped
|
Backslash in a string is escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -7674,7 +7674,7 @@ with expansion:
|
|||||||
""\\"" == ""\\""
|
""\\"" == ""\\""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
Forward slash in a string is **not** escaped
|
Forward slash in a string is **not** escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -7686,7 +7686,7 @@ with expansion:
|
|||||||
""/"" == ""/""
|
""/"" == ""/""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
Backspace in a string is escaped
|
Backspace in a string is escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -7698,7 +7698,7 @@ with expansion:
|
|||||||
""\b"" == ""\b""
|
""\b"" == ""\b""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
Formfeed in a string is escaped
|
Formfeed in a string is escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -7710,7 +7710,7 @@ with expansion:
|
|||||||
""\f"" == ""\f""
|
""\f"" == ""\f""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
linefeed in a string is escaped
|
linefeed in a string is escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -7722,7 +7722,7 @@ with expansion:
|
|||||||
""\n"" == ""\n""
|
""\n"" == ""\n""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
carriage return in a string is escaped
|
carriage return in a string is escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -7734,7 +7734,7 @@ with expansion:
|
|||||||
""\r"" == ""\r""
|
""\r"" == ""\r""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
tab in a string is escaped
|
tab in a string is escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -7746,7 +7746,7 @@ with expansion:
|
|||||||
""\t"" == ""\t""
|
""\t"" == ""\t""
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
JsonWriter escapes charaters in strings properly
|
JsonWriter escapes characters in strings properly
|
||||||
combination of characters is escaped
|
combination of characters is escaped
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Json.tests.cpp:<line number>
|
Json.tests.cpp:<line number>
|
||||||
@@ -14974,6 +14974,23 @@ MatchersRanges.tests.cpp:<line number>: PASSED:
|
|||||||
with expansion:
|
with expansion:
|
||||||
{ 1, 2, 3, 4, 5 } elements are { 2, 3, 4, 5, 6 }
|
{ 1, 2, 3, 4, 5 } elements are { 2, 3, 4, 5, 6 }
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
Usage of RangeEquals range matcher
|
||||||
|
Compare against std::initializer_list
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
MatchersRanges.tests.cpp:<line number>
|
||||||
|
...............................................................................
|
||||||
|
|
||||||
|
MatchersRanges.tests.cpp:<line number>: PASSED:
|
||||||
|
REQUIRE_THAT( array_a, RangeEquals( { 1, 2, 3 } ) )
|
||||||
|
with expansion:
|
||||||
|
{ 1, 2, 3 } elements are { 1, 2, 3 }
|
||||||
|
|
||||||
|
MatchersRanges.tests.cpp:<line number>: PASSED:
|
||||||
|
REQUIRE_THAT( array_a, RangeEquals( { 2, 4, 6 }, []( int l, int r ) { return l * 2 == r; } ) )
|
||||||
|
with expansion:
|
||||||
|
{ 1, 2, 3 } elements are { 2, 4, 6 }
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Usage of RangeEquals range matcher
|
Usage of RangeEquals range matcher
|
||||||
Check short-circuiting behaviour
|
Check short-circuiting behaviour
|
||||||
@@ -15161,6 +15178,23 @@ MatchersRanges.tests.cpp:<line number>: PASSED:
|
|||||||
with expansion:
|
with expansion:
|
||||||
{ 1, 2, 3, 4, 5 } unordered elements are { 1, 2, 3, 4, 5 }
|
{ 1, 2, 3, 4, 5 } unordered elements are { 1, 2, 3, 4, 5 }
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
Usage of UnorderedRangeEquals range matcher
|
||||||
|
Compare against std::initializer_list
|
||||||
|
-------------------------------------------------------------------------------
|
||||||
|
MatchersRanges.tests.cpp:<line number>
|
||||||
|
...............................................................................
|
||||||
|
|
||||||
|
MatchersRanges.tests.cpp:<line number>: PASSED:
|
||||||
|
REQUIRE_THAT( array_a, UnorderedRangeEquals( { 10, 20, 1 } ) )
|
||||||
|
with expansion:
|
||||||
|
{ 1, 10, 20 } unordered elements are { 10, 20, 1 }
|
||||||
|
|
||||||
|
MatchersRanges.tests.cpp:<line number>: PASSED:
|
||||||
|
REQUIRE_THAT( array_a, UnorderedRangeEquals( { 11, 21, 2 }, []( int l, int r ) { return std::abs( l - r ) <= 1; } ) )
|
||||||
|
with expansion:
|
||||||
|
{ 1, 10, 20 } unordered elements are { 11, 21, 2 }
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
Usage of the SizeIs range matcher
|
Usage of the SizeIs range matcher
|
||||||
Some with stdlib containers
|
Some with stdlib containers
|
||||||
@@ -18968,5 +19002,5 @@ Misc.tests.cpp:<line number>: PASSED:
|
|||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
test cases: 419 | 313 passed | 86 failed | 6 skipped | 14 failed as expected
|
test cases: 419 | 313 passed | 86 failed | 6 skipped | 14 failed as expected
|
||||||
assertions: 2265 | 2083 passed | 147 failed | 35 failed as expected
|
assertions: 2269 | 2087 passed | 147 failed | 35 failed as expected
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<testsuitesloose text artifact
|
<testsuitesloose text artifact
|
||||||
>
|
>
|
||||||
<testsuite name="<exe-name>" errors="17" failures="130" skipped="12" tests="2277" hostname="tbd" time="{duration}" timestamp="{iso8601-timestamp}">
|
<testsuite name="<exe-name>" errors="17" failures="130" skipped="12" tests="2281" hostname="tbd" time="{duration}" timestamp="{iso8601-timestamp}">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="random-seed" value="1"/>
|
<property name="random-seed" value="1"/>
|
||||||
<property name="filters" value=""*" ~[!nonportable] ~[!benchmark] ~[approvals]"/>
|
<property name="filters" value=""*" ~[!nonportable] ~[!benchmark] ~[approvals]"/>
|
||||||
@@ -521,8 +521,8 @@ with expansion:
|
|||||||
at Matchers.tests.cpp:<line number>
|
at Matchers.tests.cpp:<line number>
|
||||||
</failure>
|
</failure>
|
||||||
</testcase>
|
</testcase>
|
||||||
<testcase classname="<exe-name>.global" name="Enums can quickly have stringification enabled using REGISTER_ENUM" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Enums in namespaces can quickly have stringification enabled using CATCH_REGISTER_ENUM" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Epsilon only applies to Approx's value" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Epsilon only applies to Approx's value" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Equality checks that should fail" time="{duration}" status="run">
|
<testcase classname="<exe-name>.global" name="Equality checks that should fail" time="{duration}" status="run">
|
||||||
<skipped message="TEST_CASE tagged with !mayfail"/>
|
<skipped message="TEST_CASE tagged with !mayfail"/>
|
||||||
@@ -929,16 +929,16 @@ at Condition.tests.cpp:<line number>
|
|||||||
<testcase classname="<exe-name>.global" name="JsonWriter/Moved from JsonObjectWriter shall not insert superfluous brace" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter/Moved from JsonObjectWriter shall not insert superfluous brace" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter/Moved from JsonArrayWriter shall not insert superfluous bracket" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter/Moved from JsonArrayWriter shall not insert superfluous bracket" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter/Custom class shall be quoted" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter/Custom class shall be quoted" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/Quote in a string is escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/Quote in a string is escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/Backslash in a string is escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/Backslash in a string is escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/Forward slash in a string is **not** escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/Forward slash in a string is **not** escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/Backspace in a string is escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/Backspace in a string is escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/Formfeed in a string is escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/Formfeed in a string is escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/linefeed in a string is escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/linefeed in a string is escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/carriage return in a string is escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/carriage return in a string is escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/tab in a string is escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/tab in a string is escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/combination of characters is escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/combination of characters is escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Lambdas in assertions" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Lambdas in assertions" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Less-than inequalities with different epsilons" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Less-than inequalities with different epsilons" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="ManuallyRegistered" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="ManuallyRegistered" time="{duration}" status="run"/>
|
||||||
@@ -1652,6 +1652,7 @@ at Exception.tests.cpp:<line number>
|
|||||||
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Ranges that need ADL begin/end" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Ranges that need ADL begin/end" time="{duration}" status="run"/>
|
||||||
|
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Compare against std::initializer_list" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Check short-circuiting behaviour" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Check short-circuiting behaviour" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/Check short-circuits on failure" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/Check short-circuits on failure" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/All elements are checked on success" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/All elements are checked on success" time="{duration}" status="run"/>
|
||||||
@@ -1667,6 +1668,7 @@ at Exception.tests.cpp:<line number>
|
|||||||
<testcase classname="<exe-name>.global" name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of UnorderedRangeEquals range matcher/Ranges that need ADL begin/end" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of UnorderedRangeEquals range matcher/Ranges that need ADL begin/end" time="{duration}" status="run"/>
|
||||||
|
<testcase classname="<exe-name>.global" name="Usage of UnorderedRangeEquals range matcher/Compare against std::initializer_list" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of the SizeIs range matcher" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of the SizeIs range matcher" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of the SizeIs range matcher/Some with stdlib containers" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of the SizeIs range matcher/Some with stdlib containers" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of the SizeIs range matcher/Type requires ADL found size free function" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of the SizeIs range matcher/Type requires ADL found size free function" time="{duration}" status="run"/>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<testsuites>
|
<testsuites>
|
||||||
<testsuite name="<exe-name>" errors="17" failures="130" skipped="12" tests="2277" hostname="tbd" time="{duration}" timestamp="{iso8601-timestamp}">
|
<testsuite name="<exe-name>" errors="17" failures="130" skipped="12" tests="2281" hostname="tbd" time="{duration}" timestamp="{iso8601-timestamp}">
|
||||||
<properties>
|
<properties>
|
||||||
<property name="random-seed" value="1"/>
|
<property name="random-seed" value="1"/>
|
||||||
<property name="filters" value=""*" ~[!nonportable] ~[!benchmark] ~[approvals]"/>
|
<property name="filters" value=""*" ~[!nonportable] ~[!benchmark] ~[approvals]"/>
|
||||||
@@ -520,8 +520,8 @@ with expansion:
|
|||||||
at Matchers.tests.cpp:<line number>
|
at Matchers.tests.cpp:<line number>
|
||||||
</failure>
|
</failure>
|
||||||
</testcase>
|
</testcase>
|
||||||
<testcase classname="<exe-name>.global" name="Enums can quickly have stringification enabled using REGISTER_ENUM" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Enums in namespaces can quickly have stringification enabled using CATCH_REGISTER_ENUM" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Epsilon only applies to Approx's value" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Epsilon only applies to Approx's value" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Equality checks that should fail" time="{duration}" status="run">
|
<testcase classname="<exe-name>.global" name="Equality checks that should fail" time="{duration}" status="run">
|
||||||
<skipped message="TEST_CASE tagged with !mayfail"/>
|
<skipped message="TEST_CASE tagged with !mayfail"/>
|
||||||
@@ -928,16 +928,16 @@ at Condition.tests.cpp:<line number>
|
|||||||
<testcase classname="<exe-name>.global" name="JsonWriter/Moved from JsonObjectWriter shall not insert superfluous brace" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter/Moved from JsonObjectWriter shall not insert superfluous brace" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter/Moved from JsonArrayWriter shall not insert superfluous bracket" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter/Moved from JsonArrayWriter shall not insert superfluous bracket" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter/Custom class shall be quoted" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter/Custom class shall be quoted" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/Quote in a string is escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/Quote in a string is escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/Backslash in a string is escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/Backslash in a string is escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/Forward slash in a string is **not** escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/Forward slash in a string is **not** escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/Backspace in a string is escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/Backspace in a string is escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/Formfeed in a string is escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/Formfeed in a string is escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/linefeed in a string is escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/linefeed in a string is escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/carriage return in a string is escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/carriage return in a string is escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/tab in a string is escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/tab in a string is escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="JsonWriter escapes charaters in strings properly/combination of characters is escaped" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="JsonWriter escapes characters in strings properly/combination of characters is escaped" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Lambdas in assertions" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Lambdas in assertions" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Less-than inequalities with different epsilons" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Less-than inequalities with different epsilons" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="ManuallyRegistered" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="ManuallyRegistered" time="{duration}" status="run"/>
|
||||||
@@ -1651,6 +1651,7 @@ at Exception.tests.cpp:<line number>
|
|||||||
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Ranges that need ADL begin/end" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Ranges that need ADL begin/end" time="{duration}" status="run"/>
|
||||||
|
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Compare against std::initializer_list" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Check short-circuiting behaviour" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Check short-circuiting behaviour" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/Check short-circuits on failure" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/Check short-circuits on failure" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/All elements are checked on success" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/All elements are checked on success" time="{duration}" status="run"/>
|
||||||
@@ -1666,6 +1667,7 @@ at Exception.tests.cpp:<line number>
|
|||||||
<testcase classname="<exe-name>.global" name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of UnorderedRangeEquals range matcher/Ranges that need ADL begin/end" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of UnorderedRangeEquals range matcher/Ranges that need ADL begin/end" time="{duration}" status="run"/>
|
||||||
|
<testcase classname="<exe-name>.global" name="Usage of UnorderedRangeEquals range matcher/Compare against std::initializer_list" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of the SizeIs range matcher" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of the SizeIs range matcher" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of the SizeIs range matcher/Some with stdlib containers" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of the SizeIs range matcher/Some with stdlib containers" time="{duration}" status="run"/>
|
||||||
<testcase classname="<exe-name>.global" name="Usage of the SizeIs range matcher/Type requires ADL found size free function" time="{duration}" status="run"/>
|
<testcase classname="<exe-name>.global" name="Usage of the SizeIs range matcher/Type requires ADL found size free function" time="{duration}" status="run"/>
|
||||||
|
@@ -173,16 +173,16 @@ at AssertionHandler.tests.cpp:<line number>
|
|||||||
<testCase name="JsonWriter/Moved from JsonObjectWriter shall not insert superfluous brace" duration="{duration}"/>
|
<testCase name="JsonWriter/Moved from JsonObjectWriter shall not insert superfluous brace" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter/Moved from JsonArrayWriter shall not insert superfluous bracket" duration="{duration}"/>
|
<testCase name="JsonWriter/Moved from JsonArrayWriter shall not insert superfluous bracket" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter/Custom class shall be quoted" duration="{duration}"/>
|
<testCase name="JsonWriter/Custom class shall be quoted" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/Quote in a string is escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/Quote in a string is escaped" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/Backslash in a string is escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/Backslash in a string is escaped" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/Forward slash in a string is **not** escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/Forward slash in a string is **not** escaped" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/Backspace in a string is escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/Backspace in a string is escaped" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/Formfeed in a string is escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/Formfeed in a string is escaped" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/linefeed in a string is escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/linefeed in a string is escaped" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/carriage return in a string is escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/carriage return in a string is escaped" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/tab in a string is escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/tab in a string is escaped" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/combination of characters is escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/combination of characters is escaped" duration="{duration}"/>
|
||||||
</file>
|
</file>
|
||||||
<file path="tests/<exe-name>/IntrospectiveTests/Parse.tests.cpp">
|
<file path="tests/<exe-name>/IntrospectiveTests/Parse.tests.cpp">
|
||||||
<testCase name="Parse uints" duration="{duration}"/>
|
<testCase name="Parse uints" duration="{duration}"/>
|
||||||
@@ -998,8 +998,8 @@ at Decomposition.tests.cpp:<line number>
|
|||||||
</testCase>
|
</testCase>
|
||||||
</file>
|
</file>
|
||||||
<file path="tests/<exe-name>/UsageTests/EnumToString.tests.cpp">
|
<file path="tests/<exe-name>/UsageTests/EnumToString.tests.cpp">
|
||||||
<testCase name="Enums can quickly have stringification enabled using REGISTER_ENUM" duration="{duration}"/>
|
<testCase name="Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM" duration="{duration}"/>
|
||||||
<testCase name="Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM" duration="{duration}"/>
|
<testCase name="Enums in namespaces can quickly have stringification enabled using CATCH_REGISTER_ENUM" duration="{duration}"/>
|
||||||
<testCase name="toString(enum class w/operator<<)" duration="{duration}"/>
|
<testCase name="toString(enum class w/operator<<)" duration="{duration}"/>
|
||||||
<testCase name="toString(enum class)" duration="{duration}"/>
|
<testCase name="toString(enum class)" duration="{duration}"/>
|
||||||
<testCase name="toString(enum w/operator<<)" duration="{duration}"/>
|
<testCase name="toString(enum w/operator<<)" duration="{duration}"/>
|
||||||
@@ -1607,6 +1607,7 @@ at Matchers.tests.cpp:<line number>
|
|||||||
<testCase name="Usage of RangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" duration="{duration}"/>
|
<testCase name="Usage of RangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" duration="{duration}"/>
|
||||||
<testCase name="Usage of RangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" duration="{duration}"/>
|
<testCase name="Usage of RangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" duration="{duration}"/>
|
||||||
<testCase name="Usage of RangeEquals range matcher/Ranges that need ADL begin/end" duration="{duration}"/>
|
<testCase name="Usage of RangeEquals range matcher/Ranges that need ADL begin/end" duration="{duration}"/>
|
||||||
|
<testCase name="Usage of RangeEquals range matcher/Compare against std::initializer_list" duration="{duration}"/>
|
||||||
<testCase name="Usage of RangeEquals range matcher/Check short-circuiting behaviour" duration="{duration}"/>
|
<testCase name="Usage of RangeEquals range matcher/Check short-circuiting behaviour" duration="{duration}"/>
|
||||||
<testCase name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/Check short-circuits on failure" duration="{duration}"/>
|
<testCase name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/Check short-circuits on failure" duration="{duration}"/>
|
||||||
<testCase name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/All elements are checked on success" duration="{duration}"/>
|
<testCase name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/All elements are checked on success" duration="{duration}"/>
|
||||||
@@ -1622,6 +1623,7 @@ at Matchers.tests.cpp:<line number>
|
|||||||
<testCase name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" duration="{duration}"/>
|
<testCase name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" duration="{duration}"/>
|
||||||
<testCase name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" duration="{duration}"/>
|
<testCase name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" duration="{duration}"/>
|
||||||
<testCase name="Usage of UnorderedRangeEquals range matcher/Ranges that need ADL begin/end" duration="{duration}"/>
|
<testCase name="Usage of UnorderedRangeEquals range matcher/Ranges that need ADL begin/end" duration="{duration}"/>
|
||||||
|
<testCase name="Usage of UnorderedRangeEquals range matcher/Compare against std::initializer_list" duration="{duration}"/>
|
||||||
<testCase name="Usage of the SizeIs range matcher" duration="{duration}"/>
|
<testCase name="Usage of the SizeIs range matcher" duration="{duration}"/>
|
||||||
<testCase name="Usage of the SizeIs range matcher/Some with stdlib containers" duration="{duration}"/>
|
<testCase name="Usage of the SizeIs range matcher/Some with stdlib containers" duration="{duration}"/>
|
||||||
<testCase name="Usage of the SizeIs range matcher/Type requires ADL found size free function" duration="{duration}"/>
|
<testCase name="Usage of the SizeIs range matcher/Type requires ADL found size free function" duration="{duration}"/>
|
||||||
|
@@ -172,16 +172,16 @@ at AssertionHandler.tests.cpp:<line number>
|
|||||||
<testCase name="JsonWriter/Moved from JsonObjectWriter shall not insert superfluous brace" duration="{duration}"/>
|
<testCase name="JsonWriter/Moved from JsonObjectWriter shall not insert superfluous brace" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter/Moved from JsonArrayWriter shall not insert superfluous bracket" duration="{duration}"/>
|
<testCase name="JsonWriter/Moved from JsonArrayWriter shall not insert superfluous bracket" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter/Custom class shall be quoted" duration="{duration}"/>
|
<testCase name="JsonWriter/Custom class shall be quoted" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/Quote in a string is escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/Quote in a string is escaped" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/Backslash in a string is escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/Backslash in a string is escaped" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/Forward slash in a string is **not** escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/Forward slash in a string is **not** escaped" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/Backspace in a string is escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/Backspace in a string is escaped" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/Formfeed in a string is escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/Formfeed in a string is escaped" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/linefeed in a string is escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/linefeed in a string is escaped" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/carriage return in a string is escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/carriage return in a string is escaped" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/tab in a string is escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/tab in a string is escaped" duration="{duration}"/>
|
||||||
<testCase name="JsonWriter escapes charaters in strings properly/combination of characters is escaped" duration="{duration}"/>
|
<testCase name="JsonWriter escapes characters in strings properly/combination of characters is escaped" duration="{duration}"/>
|
||||||
</file>
|
</file>
|
||||||
<file path="tests/<exe-name>/IntrospectiveTests/Parse.tests.cpp">
|
<file path="tests/<exe-name>/IntrospectiveTests/Parse.tests.cpp">
|
||||||
<testCase name="Parse uints" duration="{duration}"/>
|
<testCase name="Parse uints" duration="{duration}"/>
|
||||||
@@ -997,8 +997,8 @@ at Decomposition.tests.cpp:<line number>
|
|||||||
</testCase>
|
</testCase>
|
||||||
</file>
|
</file>
|
||||||
<file path="tests/<exe-name>/UsageTests/EnumToString.tests.cpp">
|
<file path="tests/<exe-name>/UsageTests/EnumToString.tests.cpp">
|
||||||
<testCase name="Enums can quickly have stringification enabled using REGISTER_ENUM" duration="{duration}"/>
|
<testCase name="Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM" duration="{duration}"/>
|
||||||
<testCase name="Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM" duration="{duration}"/>
|
<testCase name="Enums in namespaces can quickly have stringification enabled using CATCH_REGISTER_ENUM" duration="{duration}"/>
|
||||||
<testCase name="toString(enum class w/operator<<)" duration="{duration}"/>
|
<testCase name="toString(enum class w/operator<<)" duration="{duration}"/>
|
||||||
<testCase name="toString(enum class)" duration="{duration}"/>
|
<testCase name="toString(enum class)" duration="{duration}"/>
|
||||||
<testCase name="toString(enum w/operator<<)" duration="{duration}"/>
|
<testCase name="toString(enum w/operator<<)" duration="{duration}"/>
|
||||||
@@ -1606,6 +1606,7 @@ at Matchers.tests.cpp:<line number>
|
|||||||
<testCase name="Usage of RangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" duration="{duration}"/>
|
<testCase name="Usage of RangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" duration="{duration}"/>
|
||||||
<testCase name="Usage of RangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" duration="{duration}"/>
|
<testCase name="Usage of RangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" duration="{duration}"/>
|
||||||
<testCase name="Usage of RangeEquals range matcher/Ranges that need ADL begin/end" duration="{duration}"/>
|
<testCase name="Usage of RangeEquals range matcher/Ranges that need ADL begin/end" duration="{duration}"/>
|
||||||
|
<testCase name="Usage of RangeEquals range matcher/Compare against std::initializer_list" duration="{duration}"/>
|
||||||
<testCase name="Usage of RangeEquals range matcher/Check short-circuiting behaviour" duration="{duration}"/>
|
<testCase name="Usage of RangeEquals range matcher/Check short-circuiting behaviour" duration="{duration}"/>
|
||||||
<testCase name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/Check short-circuits on failure" duration="{duration}"/>
|
<testCase name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/Check short-circuits on failure" duration="{duration}"/>
|
||||||
<testCase name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/All elements are checked on success" duration="{duration}"/>
|
<testCase name="Usage of RangeEquals range matcher/Check short-circuiting behaviour/All elements are checked on success" duration="{duration}"/>
|
||||||
@@ -1621,6 +1622,7 @@ at Matchers.tests.cpp:<line number>
|
|||||||
<testCase name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" duration="{duration}"/>
|
<testCase name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two equal non-empty containers (close enough)" duration="{duration}"/>
|
||||||
<testCase name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" duration="{duration}"/>
|
<testCase name="Usage of UnorderedRangeEquals range matcher/Custom predicate/Two non-equal non-empty containers (close enough)" duration="{duration}"/>
|
||||||
<testCase name="Usage of UnorderedRangeEquals range matcher/Ranges that need ADL begin/end" duration="{duration}"/>
|
<testCase name="Usage of UnorderedRangeEquals range matcher/Ranges that need ADL begin/end" duration="{duration}"/>
|
||||||
|
<testCase name="Usage of UnorderedRangeEquals range matcher/Compare against std::initializer_list" duration="{duration}"/>
|
||||||
<testCase name="Usage of the SizeIs range matcher" duration="{duration}"/>
|
<testCase name="Usage of the SizeIs range matcher" duration="{duration}"/>
|
||||||
<testCase name="Usage of the SizeIs range matcher/Some with stdlib containers" duration="{duration}"/>
|
<testCase name="Usage of the SizeIs range matcher/Some with stdlib containers" duration="{duration}"/>
|
||||||
<testCase name="Usage of the SizeIs range matcher/Type requires ADL found size free function" duration="{duration}"/>
|
<testCase name="Usage of the SizeIs range matcher/Type requires ADL found size free function" duration="{duration}"/>
|
||||||
|
@@ -1004,19 +1004,19 @@ ok {test-number} - Catch::makeStream( "" )->isConsole() for: true
|
|||||||
not ok {test-number} - testStringForMatching(), EndsWith( "Substring" ) for: "this string contains 'abc' as a substring" ends with: "Substring"
|
not ok {test-number} - testStringForMatching(), EndsWith( "Substring" ) for: "this string contains 'abc' as a substring" ends with: "Substring"
|
||||||
# EndsWith string matcher
|
# EndsWith string matcher
|
||||||
not ok {test-number} - testStringForMatching(), EndsWith( "this", Catch::CaseSensitive::No ) for: "this string contains 'abc' as a substring" ends with: "this" (case insensitive)
|
not ok {test-number} - testStringForMatching(), EndsWith( "this", Catch::CaseSensitive::No ) for: "this string contains 'abc' as a substring" ends with: "this" (case insensitive)
|
||||||
# Enums can quickly have stringification enabled using REGISTER_ENUM
|
# Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
ok {test-number} - stringify( EnumClass3::Value1 ) == "Value1" for: "Value1" == "Value1"
|
ok {test-number} - stringify( EnumClass3::Value1 ) == "Value1" for: "Value1" == "Value1"
|
||||||
# Enums can quickly have stringification enabled using REGISTER_ENUM
|
# Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
ok {test-number} - stringify( EnumClass3::Value2 ) == "Value2" for: "Value2" == "Value2"
|
ok {test-number} - stringify( EnumClass3::Value2 ) == "Value2" for: "Value2" == "Value2"
|
||||||
# Enums can quickly have stringification enabled using REGISTER_ENUM
|
# Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
ok {test-number} - stringify( EnumClass3::Value3 ) == "Value3" for: "Value3" == "Value3"
|
ok {test-number} - stringify( EnumClass3::Value3 ) == "Value3" for: "Value3" == "Value3"
|
||||||
# Enums can quickly have stringification enabled using REGISTER_ENUM
|
# Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
ok {test-number} - stringify( EnumClass3::Value4 ) == "{** unexpected enum value **}" for: "{** unexpected enum value **}" == "{** unexpected enum value **}"
|
ok {test-number} - stringify( EnumClass3::Value4 ) == "{** unexpected enum value **}" for: "{** unexpected enum value **}" == "{** unexpected enum value **}"
|
||||||
# Enums can quickly have stringification enabled using REGISTER_ENUM
|
# Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
ok {test-number} - stringify( ec3 ) == "Value2" for: "Value2" == "Value2"
|
ok {test-number} - stringify( ec3 ) == "Value2" for: "Value2" == "Value2"
|
||||||
# Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM
|
# Enums in namespaces can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
ok {test-number} - stringify( Bikeshed::Colours::Red ) == "Red" for: "Red" == "Red"
|
ok {test-number} - stringify( Bikeshed::Colours::Red ) == "Red" for: "Red" == "Red"
|
||||||
# Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM
|
# Enums in namespaces can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
ok {test-number} - stringify( Bikeshed::Colours::Blue ) == "Blue" for: "Blue" == "Blue"
|
ok {test-number} - stringify( Bikeshed::Colours::Blue ) == "Blue" for: "Blue" == "Blue"
|
||||||
# Epsilon only applies to Approx's value
|
# Epsilon only applies to Approx's value
|
||||||
ok {test-number} - 101.01 != Approx(100).epsilon(0.01) for: 101.01000000000000512 != Approx( 100.0 )
|
ok {test-number} - 101.01 != Approx(100).epsilon(0.01) for: 101.01000000000000512 != Approx( 100.0 )
|
||||||
@@ -1904,23 +1904,23 @@ ok {test-number} - stream.str() == "{\n}" for: "{ }" == "{ }"
|
|||||||
ok {test-number} - stream.str() == "[\n]" for: "[ ]" == "[ ]"
|
ok {test-number} - stream.str() == "[\n]" for: "[ ]" == "[ ]"
|
||||||
# JsonWriter
|
# JsonWriter
|
||||||
ok {test-number} - stream.str() == "\"custom\"" for: ""custom"" == ""custom""
|
ok {test-number} - stream.str() == "\"custom\"" for: ""custom"" == ""custom""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"\\\"\"" for: ""\""" == ""\"""
|
ok {test-number} - sstream.str() == "\"\\\"\"" for: ""\""" == ""\"""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"\\\\\"" for: ""\\"" == ""\\""
|
ok {test-number} - sstream.str() == "\"\\\\\"" for: ""\\"" == ""\\""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"/\"" for: ""/"" == ""/""
|
ok {test-number} - sstream.str() == "\"/\"" for: ""/"" == ""/""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"\\b\"" for: ""\b"" == ""\b""
|
ok {test-number} - sstream.str() == "\"\\b\"" for: ""\b"" == ""\b""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"\\f\"" for: ""\f"" == ""\f""
|
ok {test-number} - sstream.str() == "\"\\f\"" for: ""\f"" == ""\f""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"\\n\"" for: ""\n"" == ""\n""
|
ok {test-number} - sstream.str() == "\"\\n\"" for: ""\n"" == ""\n""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"\\r\"" for: ""\r"" == ""\r""
|
ok {test-number} - sstream.str() == "\"\\r\"" for: ""\r"" == ""\r""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"\\t\"" for: ""\t"" == ""\t""
|
ok {test-number} - sstream.str() == "\"\\t\"" for: ""\t"" == ""\t""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"\\\\/\\t\\r\\n\"" for: ""\\/\t\r\n"" == ""\\/\t\r\n""
|
ok {test-number} - sstream.str() == "\"\\\\/\\t\\r\\n\"" for: ""\\/\t\r\n"" == ""\\/\t\r\n""
|
||||||
# Lambdas in assertions
|
# Lambdas in assertions
|
||||||
ok {test-number} - []() { return true; }() for: true
|
ok {test-number} - []() { return true; }() for: true
|
||||||
@@ -3580,6 +3580,10 @@ ok {test-number} - needs_adl1, RangeEquals( needs_adl2 ) for: { 1, 2, 3, 4, 5 }
|
|||||||
# Usage of RangeEquals range matcher
|
# Usage of RangeEquals range matcher
|
||||||
ok {test-number} - needs_adl1, RangeEquals( needs_adl3, []( int l, int r ) { return l + 1 == r; } ) for: { 1, 2, 3, 4, 5 } elements are { 2, 3, 4, 5, 6 }
|
ok {test-number} - needs_adl1, RangeEquals( needs_adl3, []( int l, int r ) { return l + 1 == r; } ) for: { 1, 2, 3, 4, 5 } elements are { 2, 3, 4, 5, 6 }
|
||||||
# Usage of RangeEquals range matcher
|
# Usage of RangeEquals range matcher
|
||||||
|
ok {test-number} - array_a, RangeEquals( { 1, 2, 3 } ) for: { 1, 2, 3 } elements are { 1, 2, 3 }
|
||||||
|
# Usage of RangeEquals range matcher
|
||||||
|
ok {test-number} - array_a, RangeEquals( { 2, 4, 6 }, []( int l, int r ) { return l * 2 == r; } ) for: { 1, 2, 3 } elements are { 2, 4, 6 }
|
||||||
|
# Usage of RangeEquals range matcher
|
||||||
ok {test-number} - mocked1, !RangeEquals( arr ) for: { 1, 2, 3, 4 } not elements are { 1, 2, 4, 4 }
|
ok {test-number} - mocked1, !RangeEquals( arr ) for: { 1, 2, 3, 4 } not elements are { 1, 2, 4, 4 }
|
||||||
# Usage of RangeEquals range matcher
|
# Usage of RangeEquals range matcher
|
||||||
ok {test-number} - mocked1.m_derefed[0] for: true
|
ok {test-number} - mocked1.m_derefed[0] for: true
|
||||||
@@ -3619,6 +3623,10 @@ ok {test-number} - vector_a, UnorderedRangeEquals( vector_a_plus_1, close_enough
|
|||||||
ok {test-number} - vector_a, !UnorderedRangeEquals( vector_b, close_enough ) for: { 1, 10, 21 } not unordered elements are { 11, 21, 3 }
|
ok {test-number} - vector_a, !UnorderedRangeEquals( vector_b, close_enough ) for: { 1, 10, 21 } not unordered elements are { 11, 21, 3 }
|
||||||
# Usage of UnorderedRangeEquals range matcher
|
# Usage of UnorderedRangeEquals range matcher
|
||||||
ok {test-number} - needs_adl1, UnorderedRangeEquals( needs_adl2 ) for: { 1, 2, 3, 4, 5 } unordered elements are { 1, 2, 3, 4, 5 }
|
ok {test-number} - needs_adl1, UnorderedRangeEquals( needs_adl2 ) for: { 1, 2, 3, 4, 5 } unordered elements are { 1, 2, 3, 4, 5 }
|
||||||
|
# Usage of UnorderedRangeEquals range matcher
|
||||||
|
ok {test-number} - array_a, UnorderedRangeEquals( { 10, 20, 1 } ) for: { 1, 10, 20 } unordered elements are { 10, 20, 1 }
|
||||||
|
# Usage of UnorderedRangeEquals range matcher
|
||||||
|
ok {test-number} - array_a, UnorderedRangeEquals( { 11, 21, 2 }, []( int l, int r ) { return std::abs( l - r ) <= 1; } ) for: { 1, 10, 20 } unordered elements are { 11, 21, 2 }
|
||||||
# Usage of the SizeIs range matcher
|
# Usage of the SizeIs range matcher
|
||||||
ok {test-number} - empty_vec, SizeIs(0) for: { } has size == 0
|
ok {test-number} - empty_vec, SizeIs(0) for: { } has size == 0
|
||||||
# Usage of the SizeIs range matcher
|
# Usage of the SizeIs range matcher
|
||||||
@@ -4559,5 +4567,5 @@ ok {test-number} - q3 == 23. for: 23.0 == 23.0
|
|||||||
ok {test-number} -
|
ok {test-number} -
|
||||||
# xmlentitycheck
|
# xmlentitycheck
|
||||||
ok {test-number} -
|
ok {test-number} -
|
||||||
1..2277
|
1..2281
|
||||||
|
|
||||||
|
@@ -1002,19 +1002,19 @@ ok {test-number} - Catch::makeStream( "" )->isConsole() for: true
|
|||||||
not ok {test-number} - testStringForMatching(), EndsWith( "Substring" ) for: "this string contains 'abc' as a substring" ends with: "Substring"
|
not ok {test-number} - testStringForMatching(), EndsWith( "Substring" ) for: "this string contains 'abc' as a substring" ends with: "Substring"
|
||||||
# EndsWith string matcher
|
# EndsWith string matcher
|
||||||
not ok {test-number} - testStringForMatching(), EndsWith( "this", Catch::CaseSensitive::No ) for: "this string contains 'abc' as a substring" ends with: "this" (case insensitive)
|
not ok {test-number} - testStringForMatching(), EndsWith( "this", Catch::CaseSensitive::No ) for: "this string contains 'abc' as a substring" ends with: "this" (case insensitive)
|
||||||
# Enums can quickly have stringification enabled using REGISTER_ENUM
|
# Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
ok {test-number} - stringify( EnumClass3::Value1 ) == "Value1" for: "Value1" == "Value1"
|
ok {test-number} - stringify( EnumClass3::Value1 ) == "Value1" for: "Value1" == "Value1"
|
||||||
# Enums can quickly have stringification enabled using REGISTER_ENUM
|
# Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
ok {test-number} - stringify( EnumClass3::Value2 ) == "Value2" for: "Value2" == "Value2"
|
ok {test-number} - stringify( EnumClass3::Value2 ) == "Value2" for: "Value2" == "Value2"
|
||||||
# Enums can quickly have stringification enabled using REGISTER_ENUM
|
# Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
ok {test-number} - stringify( EnumClass3::Value3 ) == "Value3" for: "Value3" == "Value3"
|
ok {test-number} - stringify( EnumClass3::Value3 ) == "Value3" for: "Value3" == "Value3"
|
||||||
# Enums can quickly have stringification enabled using REGISTER_ENUM
|
# Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
ok {test-number} - stringify( EnumClass3::Value4 ) == "{** unexpected enum value **}" for: "{** unexpected enum value **}" == "{** unexpected enum value **}"
|
ok {test-number} - stringify( EnumClass3::Value4 ) == "{** unexpected enum value **}" for: "{** unexpected enum value **}" == "{** unexpected enum value **}"
|
||||||
# Enums can quickly have stringification enabled using REGISTER_ENUM
|
# Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
ok {test-number} - stringify( ec3 ) == "Value2" for: "Value2" == "Value2"
|
ok {test-number} - stringify( ec3 ) == "Value2" for: "Value2" == "Value2"
|
||||||
# Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM
|
# Enums in namespaces can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
ok {test-number} - stringify( Bikeshed::Colours::Red ) == "Red" for: "Red" == "Red"
|
ok {test-number} - stringify( Bikeshed::Colours::Red ) == "Red" for: "Red" == "Red"
|
||||||
# Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM
|
# Enums in namespaces can quickly have stringification enabled using CATCH_REGISTER_ENUM
|
||||||
ok {test-number} - stringify( Bikeshed::Colours::Blue ) == "Blue" for: "Blue" == "Blue"
|
ok {test-number} - stringify( Bikeshed::Colours::Blue ) == "Blue" for: "Blue" == "Blue"
|
||||||
# Epsilon only applies to Approx's value
|
# Epsilon only applies to Approx's value
|
||||||
ok {test-number} - 101.01 != Approx(100).epsilon(0.01) for: 101.01000000000000512 != Approx( 100.0 )
|
ok {test-number} - 101.01 != Approx(100).epsilon(0.01) for: 101.01000000000000512 != Approx( 100.0 )
|
||||||
@@ -1902,23 +1902,23 @@ ok {test-number} - stream.str() == "{\n}" for: "{ }" == "{ }"
|
|||||||
ok {test-number} - stream.str() == "[\n]" for: "[ ]" == "[ ]"
|
ok {test-number} - stream.str() == "[\n]" for: "[ ]" == "[ ]"
|
||||||
# JsonWriter
|
# JsonWriter
|
||||||
ok {test-number} - stream.str() == "\"custom\"" for: ""custom"" == ""custom""
|
ok {test-number} - stream.str() == "\"custom\"" for: ""custom"" == ""custom""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"\\\"\"" for: ""\""" == ""\"""
|
ok {test-number} - sstream.str() == "\"\\\"\"" for: ""\""" == ""\"""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"\\\\\"" for: ""\\"" == ""\\""
|
ok {test-number} - sstream.str() == "\"\\\\\"" for: ""\\"" == ""\\""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"/\"" for: ""/"" == ""/""
|
ok {test-number} - sstream.str() == "\"/\"" for: ""/"" == ""/""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"\\b\"" for: ""\b"" == ""\b""
|
ok {test-number} - sstream.str() == "\"\\b\"" for: ""\b"" == ""\b""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"\\f\"" for: ""\f"" == ""\f""
|
ok {test-number} - sstream.str() == "\"\\f\"" for: ""\f"" == ""\f""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"\\n\"" for: ""\n"" == ""\n""
|
ok {test-number} - sstream.str() == "\"\\n\"" for: ""\n"" == ""\n""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"\\r\"" for: ""\r"" == ""\r""
|
ok {test-number} - sstream.str() == "\"\\r\"" for: ""\r"" == ""\r""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"\\t\"" for: ""\t"" == ""\t""
|
ok {test-number} - sstream.str() == "\"\\t\"" for: ""\t"" == ""\t""
|
||||||
# JsonWriter escapes charaters in strings properly
|
# JsonWriter escapes characters in strings properly
|
||||||
ok {test-number} - sstream.str() == "\"\\\\/\\t\\r\\n\"" for: ""\\/\t\r\n"" == ""\\/\t\r\n""
|
ok {test-number} - sstream.str() == "\"\\\\/\\t\\r\\n\"" for: ""\\/\t\r\n"" == ""\\/\t\r\n""
|
||||||
# Lambdas in assertions
|
# Lambdas in assertions
|
||||||
ok {test-number} - []() { return true; }() for: true
|
ok {test-number} - []() { return true; }() for: true
|
||||||
@@ -3573,6 +3573,10 @@ ok {test-number} - needs_adl1, RangeEquals( needs_adl2 ) for: { 1, 2, 3, 4, 5 }
|
|||||||
# Usage of RangeEquals range matcher
|
# Usage of RangeEquals range matcher
|
||||||
ok {test-number} - needs_adl1, RangeEquals( needs_adl3, []( int l, int r ) { return l + 1 == r; } ) for: { 1, 2, 3, 4, 5 } elements are { 2, 3, 4, 5, 6 }
|
ok {test-number} - needs_adl1, RangeEquals( needs_adl3, []( int l, int r ) { return l + 1 == r; } ) for: { 1, 2, 3, 4, 5 } elements are { 2, 3, 4, 5, 6 }
|
||||||
# Usage of RangeEquals range matcher
|
# Usage of RangeEquals range matcher
|
||||||
|
ok {test-number} - array_a, RangeEquals( { 1, 2, 3 } ) for: { 1, 2, 3 } elements are { 1, 2, 3 }
|
||||||
|
# Usage of RangeEquals range matcher
|
||||||
|
ok {test-number} - array_a, RangeEquals( { 2, 4, 6 }, []( int l, int r ) { return l * 2 == r; } ) for: { 1, 2, 3 } elements are { 2, 4, 6 }
|
||||||
|
# Usage of RangeEquals range matcher
|
||||||
ok {test-number} - mocked1, !RangeEquals( arr ) for: { 1, 2, 3, 4 } not elements are { 1, 2, 4, 4 }
|
ok {test-number} - mocked1, !RangeEquals( arr ) for: { 1, 2, 3, 4 } not elements are { 1, 2, 4, 4 }
|
||||||
# Usage of RangeEquals range matcher
|
# Usage of RangeEquals range matcher
|
||||||
ok {test-number} - mocked1.m_derefed[0] for: true
|
ok {test-number} - mocked1.m_derefed[0] for: true
|
||||||
@@ -3612,6 +3616,10 @@ ok {test-number} - vector_a, UnorderedRangeEquals( vector_a_plus_1, close_enough
|
|||||||
ok {test-number} - vector_a, !UnorderedRangeEquals( vector_b, close_enough ) for: { 1, 10, 21 } not unordered elements are { 11, 21, 3 }
|
ok {test-number} - vector_a, !UnorderedRangeEquals( vector_b, close_enough ) for: { 1, 10, 21 } not unordered elements are { 11, 21, 3 }
|
||||||
# Usage of UnorderedRangeEquals range matcher
|
# Usage of UnorderedRangeEquals range matcher
|
||||||
ok {test-number} - needs_adl1, UnorderedRangeEquals( needs_adl2 ) for: { 1, 2, 3, 4, 5 } unordered elements are { 1, 2, 3, 4, 5 }
|
ok {test-number} - needs_adl1, UnorderedRangeEquals( needs_adl2 ) for: { 1, 2, 3, 4, 5 } unordered elements are { 1, 2, 3, 4, 5 }
|
||||||
|
# Usage of UnorderedRangeEquals range matcher
|
||||||
|
ok {test-number} - array_a, UnorderedRangeEquals( { 10, 20, 1 } ) for: { 1, 10, 20 } unordered elements are { 10, 20, 1 }
|
||||||
|
# Usage of UnorderedRangeEquals range matcher
|
||||||
|
ok {test-number} - array_a, UnorderedRangeEquals( { 11, 21, 2 }, []( int l, int r ) { return std::abs( l - r ) <= 1; } ) for: { 1, 10, 20 } unordered elements are { 11, 21, 2 }
|
||||||
# Usage of the SizeIs range matcher
|
# Usage of the SizeIs range matcher
|
||||||
ok {test-number} - empty_vec, SizeIs(0) for: { } has size == 0
|
ok {test-number} - empty_vec, SizeIs(0) for: { } has size == 0
|
||||||
# Usage of the SizeIs range matcher
|
# Usage of the SizeIs range matcher
|
||||||
@@ -4548,5 +4556,5 @@ ok {test-number} - q3 == 23. for: 23.0 == 23.0
|
|||||||
ok {test-number} -
|
ok {test-number} -
|
||||||
# xmlentitycheck
|
# xmlentitycheck
|
||||||
ok {test-number} -
|
ok {test-number} -
|
||||||
1..2277
|
1..2281
|
||||||
|
|
||||||
|
@@ -315,10 +315,10 @@
|
|||||||
##teamcity[testFailed name='EndsWith string matcher' message='Matchers.tests.cpp:<line number>|n...............................................................................|n|nMatchers.tests.cpp:<line number>|nexpression failed|n CHECK_THAT( testStringForMatching(), EndsWith( "Substring" ) )|nwith expansion:|n "this string contains |'abc|' as a substring" ends with: "Substring"|n']
|
##teamcity[testFailed name='EndsWith string matcher' message='Matchers.tests.cpp:<line number>|n...............................................................................|n|nMatchers.tests.cpp:<line number>|nexpression failed|n CHECK_THAT( testStringForMatching(), EndsWith( "Substring" ) )|nwith expansion:|n "this string contains |'abc|' as a substring" ends with: "Substring"|n']
|
||||||
##teamcity[testFailed name='EndsWith string matcher' message='Matchers.tests.cpp:<line number>|nexpression failed|n CHECK_THAT( testStringForMatching(), EndsWith( "this", Catch::CaseSensitive::No ) )|nwith expansion:|n "this string contains |'abc|' as a substring" ends with: "this" (case insensitive)|n']
|
##teamcity[testFailed name='EndsWith string matcher' message='Matchers.tests.cpp:<line number>|nexpression failed|n CHECK_THAT( testStringForMatching(), EndsWith( "this", Catch::CaseSensitive::No ) )|nwith expansion:|n "this string contains |'abc|' as a substring" ends with: "this" (case insensitive)|n']
|
||||||
##teamcity[testFinished name='EndsWith string matcher' duration="{duration}"]
|
##teamcity[testFinished name='EndsWith string matcher' duration="{duration}"]
|
||||||
##teamcity[testStarted name='Enums can quickly have stringification enabled using REGISTER_ENUM']
|
##teamcity[testStarted name='Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM']
|
||||||
##teamcity[testFinished name='Enums can quickly have stringification enabled using REGISTER_ENUM' duration="{duration}"]
|
##teamcity[testFinished name='Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM' duration="{duration}"]
|
||||||
##teamcity[testStarted name='Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM']
|
##teamcity[testStarted name='Enums in namespaces can quickly have stringification enabled using CATCH_REGISTER_ENUM']
|
||||||
##teamcity[testFinished name='Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM' duration="{duration}"]
|
##teamcity[testFinished name='Enums in namespaces can quickly have stringification enabled using CATCH_REGISTER_ENUM' duration="{duration}"]
|
||||||
##teamcity[testStarted name='Epsilon only applies to Approx|'s value']
|
##teamcity[testStarted name='Epsilon only applies to Approx|'s value']
|
||||||
##teamcity[testFinished name='Epsilon only applies to Approx|'s value' duration="{duration}"]
|
##teamcity[testFinished name='Epsilon only applies to Approx|'s value' duration="{duration}"]
|
||||||
##teamcity[testStarted name='Equality checks that should fail']
|
##teamcity[testStarted name='Equality checks that should fail']
|
||||||
@@ -431,8 +431,8 @@
|
|||||||
##teamcity[testFinished name='Inequality checks that should succeed' duration="{duration}"]
|
##teamcity[testFinished name='Inequality checks that should succeed' duration="{duration}"]
|
||||||
##teamcity[testStarted name='JsonWriter']
|
##teamcity[testStarted name='JsonWriter']
|
||||||
##teamcity[testFinished name='JsonWriter' duration="{duration}"]
|
##teamcity[testFinished name='JsonWriter' duration="{duration}"]
|
||||||
##teamcity[testStarted name='JsonWriter escapes charaters in strings properly']
|
##teamcity[testStarted name='JsonWriter escapes characters in strings properly']
|
||||||
##teamcity[testFinished name='JsonWriter escapes charaters in strings properly' duration="{duration}"]
|
##teamcity[testFinished name='JsonWriter escapes characters in strings properly' duration="{duration}"]
|
||||||
##teamcity[testStarted name='Lambdas in assertions']
|
##teamcity[testStarted name='Lambdas in assertions']
|
||||||
##teamcity[testFinished name='Lambdas in assertions' duration="{duration}"]
|
##teamcity[testFinished name='Lambdas in assertions' duration="{duration}"]
|
||||||
##teamcity[testStarted name='Less-than inequalities with different epsilons']
|
##teamcity[testStarted name='Less-than inequalities with different epsilons']
|
||||||
|
@@ -315,10 +315,10 @@
|
|||||||
##teamcity[testFailed name='EndsWith string matcher' message='Matchers.tests.cpp:<line number>|n...............................................................................|n|nMatchers.tests.cpp:<line number>|nexpression failed|n CHECK_THAT( testStringForMatching(), EndsWith( "Substring" ) )|nwith expansion:|n "this string contains |'abc|' as a substring" ends with: "Substring"|n']
|
##teamcity[testFailed name='EndsWith string matcher' message='Matchers.tests.cpp:<line number>|n...............................................................................|n|nMatchers.tests.cpp:<line number>|nexpression failed|n CHECK_THAT( testStringForMatching(), EndsWith( "Substring" ) )|nwith expansion:|n "this string contains |'abc|' as a substring" ends with: "Substring"|n']
|
||||||
##teamcity[testFailed name='EndsWith string matcher' message='Matchers.tests.cpp:<line number>|nexpression failed|n CHECK_THAT( testStringForMatching(), EndsWith( "this", Catch::CaseSensitive::No ) )|nwith expansion:|n "this string contains |'abc|' as a substring" ends with: "this" (case insensitive)|n']
|
##teamcity[testFailed name='EndsWith string matcher' message='Matchers.tests.cpp:<line number>|nexpression failed|n CHECK_THAT( testStringForMatching(), EndsWith( "this", Catch::CaseSensitive::No ) )|nwith expansion:|n "this string contains |'abc|' as a substring" ends with: "this" (case insensitive)|n']
|
||||||
##teamcity[testFinished name='EndsWith string matcher' duration="{duration}"]
|
##teamcity[testFinished name='EndsWith string matcher' duration="{duration}"]
|
||||||
##teamcity[testStarted name='Enums can quickly have stringification enabled using REGISTER_ENUM']
|
##teamcity[testStarted name='Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM']
|
||||||
##teamcity[testFinished name='Enums can quickly have stringification enabled using REGISTER_ENUM' duration="{duration}"]
|
##teamcity[testFinished name='Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM' duration="{duration}"]
|
||||||
##teamcity[testStarted name='Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM']
|
##teamcity[testStarted name='Enums in namespaces can quickly have stringification enabled using CATCH_REGISTER_ENUM']
|
||||||
##teamcity[testFinished name='Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM' duration="{duration}"]
|
##teamcity[testFinished name='Enums in namespaces can quickly have stringification enabled using CATCH_REGISTER_ENUM' duration="{duration}"]
|
||||||
##teamcity[testStarted name='Epsilon only applies to Approx|'s value']
|
##teamcity[testStarted name='Epsilon only applies to Approx|'s value']
|
||||||
##teamcity[testFinished name='Epsilon only applies to Approx|'s value' duration="{duration}"]
|
##teamcity[testFinished name='Epsilon only applies to Approx|'s value' duration="{duration}"]
|
||||||
##teamcity[testStarted name='Equality checks that should fail']
|
##teamcity[testStarted name='Equality checks that should fail']
|
||||||
@@ -431,8 +431,8 @@
|
|||||||
##teamcity[testFinished name='Inequality checks that should succeed' duration="{duration}"]
|
##teamcity[testFinished name='Inequality checks that should succeed' duration="{duration}"]
|
||||||
##teamcity[testStarted name='JsonWriter']
|
##teamcity[testStarted name='JsonWriter']
|
||||||
##teamcity[testFinished name='JsonWriter' duration="{duration}"]
|
##teamcity[testFinished name='JsonWriter' duration="{duration}"]
|
||||||
##teamcity[testStarted name='JsonWriter escapes charaters in strings properly']
|
##teamcity[testStarted name='JsonWriter escapes characters in strings properly']
|
||||||
##teamcity[testFinished name='JsonWriter escapes charaters in strings properly' duration="{duration}"]
|
##teamcity[testFinished name='JsonWriter escapes characters in strings properly' duration="{duration}"]
|
||||||
##teamcity[testStarted name='Lambdas in assertions']
|
##teamcity[testStarted name='Lambdas in assertions']
|
||||||
##teamcity[testFinished name='Lambdas in assertions' duration="{duration}"]
|
##teamcity[testFinished name='Lambdas in assertions' duration="{duration}"]
|
||||||
##teamcity[testStarted name='Less-than inequalities with different epsilons']
|
##teamcity[testStarted name='Less-than inequalities with different epsilons']
|
||||||
|
@@ -4493,7 +4493,7 @@ C
|
|||||||
</Expression>
|
</Expression>
|
||||||
<OverallResult success="false" skips="0"/>
|
<OverallResult success="false" skips="0"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
<TestCase name="Enums can quickly have stringification enabled using REGISTER_ENUM" filename="tests/<exe-name>/UsageTests/EnumToString.tests.cpp" >
|
<TestCase name="Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM" filename="tests/<exe-name>/UsageTests/EnumToString.tests.cpp" >
|
||||||
<Expression success="true" type="REQUIRE" filename="tests/<exe-name>/UsageTests/EnumToString.tests.cpp" >
|
<Expression success="true" type="REQUIRE" filename="tests/<exe-name>/UsageTests/EnumToString.tests.cpp" >
|
||||||
<Original>
|
<Original>
|
||||||
stringify( EnumClass3::Value1 ) == "Value1"
|
stringify( EnumClass3::Value1 ) == "Value1"
|
||||||
@@ -4538,7 +4538,7 @@ C
|
|||||||
</Expression>
|
</Expression>
|
||||||
<OverallResult success="true" skips="0"/>
|
<OverallResult success="true" skips="0"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
<TestCase name="Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM" filename="tests/<exe-name>/UsageTests/EnumToString.tests.cpp" >
|
<TestCase name="Enums in namespaces can quickly have stringification enabled using CATCH_REGISTER_ENUM" filename="tests/<exe-name>/UsageTests/EnumToString.tests.cpp" >
|
||||||
<Expression success="true" type="REQUIRE" filename="tests/<exe-name>/UsageTests/EnumToString.tests.cpp" >
|
<Expression success="true" type="REQUIRE" filename="tests/<exe-name>/UsageTests/EnumToString.tests.cpp" >
|
||||||
<Original>
|
<Original>
|
||||||
stringify( Bikeshed::Colours::Red ) == "Red"
|
stringify( Bikeshed::Colours::Red ) == "Red"
|
||||||
@@ -9158,7 +9158,7 @@ Approx( 3.14150000000000018 )
|
|||||||
</Section>
|
</Section>
|
||||||
<OverallResult success="true" skips="0"/>
|
<OverallResult success="true" skips="0"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
<TestCase name="JsonWriter escapes charaters in strings properly" tags="[JsonWriter]" filename="tests/<exe-name>/IntrospectiveTests/Json.tests.cpp" >
|
<TestCase name="JsonWriter escapes characters in strings properly" tags="[JsonWriter]" filename="tests/<exe-name>/IntrospectiveTests/Json.tests.cpp" >
|
||||||
<Section name="Quote in a string is escaped" filename="tests/<exe-name>/IntrospectiveTests/Json.tests.cpp" >
|
<Section name="Quote in a string is escaped" filename="tests/<exe-name>/IntrospectiveTests/Json.tests.cpp" >
|
||||||
<Expression success="true" type="REQUIRE" filename="tests/<exe-name>/IntrospectiveTests/Json.tests.cpp" >
|
<Expression success="true" type="REQUIRE" filename="tests/<exe-name>/IntrospectiveTests/Json.tests.cpp" >
|
||||||
<Original>
|
<Original>
|
||||||
@@ -17383,6 +17383,25 @@ There is no extra whitespace here
|
|||||||
</Expression>
|
</Expression>
|
||||||
<OverallResults successes="2" failures="0" expectedFailures="0" skipped="false"/>
|
<OverallResults successes="2" failures="0" expectedFailures="0" skipped="false"/>
|
||||||
</Section>
|
</Section>
|
||||||
|
<Section name="Compare against std::initializer_list" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
|
<Expression success="true" type="REQUIRE_THAT" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
|
<Original>
|
||||||
|
array_a, RangeEquals( { 1, 2, 3 } )
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
{ 1, 2, 3 } elements are { 1, 2, 3 }
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<Expression success="true" type="REQUIRE_THAT" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
|
<Original>
|
||||||
|
array_a, RangeEquals( { 2, 4, 6 }, []( int l, int r ) { return l * 2 == r; } )
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
{ 1, 2, 3 } elements are { 2, 4, 6 }
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<OverallResults successes="2" failures="0" expectedFailures="0" skipped="false"/>
|
||||||
|
</Section>
|
||||||
<Section name="Check short-circuiting behaviour" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
<Section name="Check short-circuiting behaviour" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
<Section name="Check short-circuits on failure" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
<Section name="Check short-circuits on failure" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
<Expression success="true" type="REQUIRE_THAT" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
<Expression success="true" type="REQUIRE_THAT" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
@@ -17609,6 +17628,25 @@ There is no extra whitespace here
|
|||||||
</Expression>
|
</Expression>
|
||||||
<OverallResults successes="1" failures="0" expectedFailures="0" skipped="false"/>
|
<OverallResults successes="1" failures="0" expectedFailures="0" skipped="false"/>
|
||||||
</Section>
|
</Section>
|
||||||
|
<Section name="Compare against std::initializer_list" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
|
<Expression success="true" type="REQUIRE_THAT" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
|
<Original>
|
||||||
|
array_a, UnorderedRangeEquals( { 10, 20, 1 } )
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
{ 1, 10, 20 } unordered elements are { 10, 20, 1 }
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<Expression success="true" type="REQUIRE_THAT" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
|
<Original>
|
||||||
|
array_a, UnorderedRangeEquals( { 11, 21, 2 }, []( int l, int r ) { return std::abs( l - r ) <= 1; } )
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
{ 1, 10, 20 } unordered elements are { 11, 21, 2 }
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<OverallResults successes="2" failures="0" expectedFailures="0" skipped="false"/>
|
||||||
|
</Section>
|
||||||
<OverallResult success="true" skips="0"/>
|
<OverallResult success="true" skips="0"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
<TestCase name="Usage of the SizeIs range matcher" tags="[matchers][size][templated]" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
<TestCase name="Usage of the SizeIs range matcher" tags="[matchers][size][templated]" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
@@ -21933,6 +21971,6 @@ Approx( -1.95996398454005449 )
|
|||||||
</Section>
|
</Section>
|
||||||
<OverallResult success="true" skips="0"/>
|
<OverallResult success="true" skips="0"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
<OverallResults successes="2083" failures="147" expectedFailures="35" skips="12"/>
|
<OverallResults successes="2087" failures="147" expectedFailures="35" skips="12"/>
|
||||||
<OverallResultsCases successes="313" failures="86" expectedFailures="14" skips="6"/>
|
<OverallResultsCases successes="313" failures="86" expectedFailures="14" skips="6"/>
|
||||||
</Catch2TestRun>
|
</Catch2TestRun>
|
||||||
|
@@ -4493,7 +4493,7 @@ C
|
|||||||
</Expression>
|
</Expression>
|
||||||
<OverallResult success="false" skips="0"/>
|
<OverallResult success="false" skips="0"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
<TestCase name="Enums can quickly have stringification enabled using REGISTER_ENUM" filename="tests/<exe-name>/UsageTests/EnumToString.tests.cpp" >
|
<TestCase name="Enums can quickly have stringification enabled using CATCH_REGISTER_ENUM" filename="tests/<exe-name>/UsageTests/EnumToString.tests.cpp" >
|
||||||
<Expression success="true" type="REQUIRE" filename="tests/<exe-name>/UsageTests/EnumToString.tests.cpp" >
|
<Expression success="true" type="REQUIRE" filename="tests/<exe-name>/UsageTests/EnumToString.tests.cpp" >
|
||||||
<Original>
|
<Original>
|
||||||
stringify( EnumClass3::Value1 ) == "Value1"
|
stringify( EnumClass3::Value1 ) == "Value1"
|
||||||
@@ -4538,7 +4538,7 @@ C
|
|||||||
</Expression>
|
</Expression>
|
||||||
<OverallResult success="true" skips="0"/>
|
<OverallResult success="true" skips="0"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
<TestCase name="Enums in namespaces can quickly have stringification enabled using REGISTER_ENUM" filename="tests/<exe-name>/UsageTests/EnumToString.tests.cpp" >
|
<TestCase name="Enums in namespaces can quickly have stringification enabled using CATCH_REGISTER_ENUM" filename="tests/<exe-name>/UsageTests/EnumToString.tests.cpp" >
|
||||||
<Expression success="true" type="REQUIRE" filename="tests/<exe-name>/UsageTests/EnumToString.tests.cpp" >
|
<Expression success="true" type="REQUIRE" filename="tests/<exe-name>/UsageTests/EnumToString.tests.cpp" >
|
||||||
<Original>
|
<Original>
|
||||||
stringify( Bikeshed::Colours::Red ) == "Red"
|
stringify( Bikeshed::Colours::Red ) == "Red"
|
||||||
@@ -9158,7 +9158,7 @@ Approx( 3.14150000000000018 )
|
|||||||
</Section>
|
</Section>
|
||||||
<OverallResult success="true" skips="0"/>
|
<OverallResult success="true" skips="0"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
<TestCase name="JsonWriter escapes charaters in strings properly" tags="[JsonWriter]" filename="tests/<exe-name>/IntrospectiveTests/Json.tests.cpp" >
|
<TestCase name="JsonWriter escapes characters in strings properly" tags="[JsonWriter]" filename="tests/<exe-name>/IntrospectiveTests/Json.tests.cpp" >
|
||||||
<Section name="Quote in a string is escaped" filename="tests/<exe-name>/IntrospectiveTests/Json.tests.cpp" >
|
<Section name="Quote in a string is escaped" filename="tests/<exe-name>/IntrospectiveTests/Json.tests.cpp" >
|
||||||
<Expression success="true" type="REQUIRE" filename="tests/<exe-name>/IntrospectiveTests/Json.tests.cpp" >
|
<Expression success="true" type="REQUIRE" filename="tests/<exe-name>/IntrospectiveTests/Json.tests.cpp" >
|
||||||
<Original>
|
<Original>
|
||||||
@@ -17383,6 +17383,25 @@ There is no extra whitespace here
|
|||||||
</Expression>
|
</Expression>
|
||||||
<OverallResults successes="2" failures="0" expectedFailures="0" skipped="false"/>
|
<OverallResults successes="2" failures="0" expectedFailures="0" skipped="false"/>
|
||||||
</Section>
|
</Section>
|
||||||
|
<Section name="Compare against std::initializer_list" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
|
<Expression success="true" type="REQUIRE_THAT" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
|
<Original>
|
||||||
|
array_a, RangeEquals( { 1, 2, 3 } )
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
{ 1, 2, 3 } elements are { 1, 2, 3 }
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<Expression success="true" type="REQUIRE_THAT" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
|
<Original>
|
||||||
|
array_a, RangeEquals( { 2, 4, 6 }, []( int l, int r ) { return l * 2 == r; } )
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
{ 1, 2, 3 } elements are { 2, 4, 6 }
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<OverallResults successes="2" failures="0" expectedFailures="0" skipped="false"/>
|
||||||
|
</Section>
|
||||||
<Section name="Check short-circuiting behaviour" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
<Section name="Check short-circuiting behaviour" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
<Section name="Check short-circuits on failure" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
<Section name="Check short-circuits on failure" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
<Expression success="true" type="REQUIRE_THAT" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
<Expression success="true" type="REQUIRE_THAT" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
@@ -17609,6 +17628,25 @@ There is no extra whitespace here
|
|||||||
</Expression>
|
</Expression>
|
||||||
<OverallResults successes="1" failures="0" expectedFailures="0" skipped="false"/>
|
<OverallResults successes="1" failures="0" expectedFailures="0" skipped="false"/>
|
||||||
</Section>
|
</Section>
|
||||||
|
<Section name="Compare against std::initializer_list" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
|
<Expression success="true" type="REQUIRE_THAT" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
|
<Original>
|
||||||
|
array_a, UnorderedRangeEquals( { 10, 20, 1 } )
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
{ 1, 10, 20 } unordered elements are { 10, 20, 1 }
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<Expression success="true" type="REQUIRE_THAT" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
|
<Original>
|
||||||
|
array_a, UnorderedRangeEquals( { 11, 21, 2 }, []( int l, int r ) { return std::abs( l - r ) <= 1; } )
|
||||||
|
</Original>
|
||||||
|
<Expanded>
|
||||||
|
{ 1, 10, 20 } unordered elements are { 11, 21, 2 }
|
||||||
|
</Expanded>
|
||||||
|
</Expression>
|
||||||
|
<OverallResults successes="2" failures="0" expectedFailures="0" skipped="false"/>
|
||||||
|
</Section>
|
||||||
<OverallResult success="true" skips="0"/>
|
<OverallResult success="true" skips="0"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
<TestCase name="Usage of the SizeIs range matcher" tags="[matchers][size][templated]" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
<TestCase name="Usage of the SizeIs range matcher" tags="[matchers][size][templated]" filename="tests/<exe-name>/UsageTests/MatchersRanges.tests.cpp" >
|
||||||
@@ -21932,6 +21970,6 @@ Approx( -1.95996398454005449 )
|
|||||||
</Section>
|
</Section>
|
||||||
<OverallResult success="true" skips="0"/>
|
<OverallResult success="true" skips="0"/>
|
||||||
</TestCase>
|
</TestCase>
|
||||||
<OverallResults successes="2083" failures="147" expectedFailures="35" skips="12"/>
|
<OverallResults successes="2087" failures="147" expectedFailures="35" skips="12"/>
|
||||||
<OverallResultsCases successes="313" failures="86" expectedFailures="14" skips="6"/>
|
<OverallResultsCases successes="313" failures="86" expectedFailures="14" skips="6"/>
|
||||||
</Catch2TestRun>
|
</Catch2TestRun>
|
||||||
|
@@ -22,7 +22,7 @@ namespace {
|
|||||||
ExtendedMultResult<Int>{ upper_result, lower_result } );
|
ExtendedMultResult<Int>{ upper_result, lower_result } );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Simple (and slow) implmentation of extended multiplication for tests
|
// Simple (and slow) implementation of extended multiplication for tests
|
||||||
constexpr Catch::Detail::ExtendedMultResult<std::uint64_t>
|
constexpr Catch::Detail::ExtendedMultResult<std::uint64_t>
|
||||||
extendedMultNaive( std::uint64_t lhs, std::uint64_t rhs ) {
|
extendedMultNaive( std::uint64_t lhs, std::uint64_t rhs ) {
|
||||||
// This is a simple long multiplication, where we split lhs and rhs
|
// This is a simple long multiplication, where we split lhs and rhs
|
||||||
|
@@ -111,7 +111,7 @@ TEST_CASE( "JsonWriter", "[JSON][JsonWriter]" ) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_CASE( "JsonWriter escapes charaters in strings properly", "[JsonWriter]" ) {
|
TEST_CASE( "JsonWriter escapes characters in strings properly", "[JsonWriter]" ) {
|
||||||
std::stringstream sstream;
|
std::stringstream sstream;
|
||||||
SECTION( "Quote in a string is escaped" ) {
|
SECTION( "Quote in a string is escaped" ) {
|
||||||
Catch::JsonValueWriter{ sstream }.write( "\"" );
|
Catch::JsonValueWriter{ sstream }.write( "\"" );
|
||||||
|
@@ -151,7 +151,7 @@ TEMPLATE_TEST_CASE( "uniform_integer_distribution can handle unit ranges",
|
|||||||
Catch::SimplePcg32 pcg( seed );
|
Catch::SimplePcg32 pcg( seed );
|
||||||
|
|
||||||
// We check unitary ranges of 3 different values, min for type, max for type,
|
// We check unitary ranges of 3 different values, min for type, max for type,
|
||||||
// some value inbetween just to make sure
|
// some value in between just to make sure
|
||||||
SECTION("lowest value") {
|
SECTION("lowest value") {
|
||||||
constexpr auto lowest = std::numeric_limits<TestType>::min();
|
constexpr auto lowest = std::numeric_limits<TestType>::min();
|
||||||
Catch::uniform_integer_distribution<TestType> dist( lowest, lowest );
|
Catch::uniform_integer_distribution<TestType> dist( lowest, lowest );
|
||||||
@@ -180,7 +180,7 @@ TEST_CASE( "uniform_integer_distribution can handle boolean unit ranges",
|
|||||||
Catch::SimplePcg32 pcg( seed );
|
Catch::SimplePcg32 pcg( seed );
|
||||||
|
|
||||||
// We check unitary ranges of 3 different values, min for type, max for
|
// We check unitary ranges of 3 different values, min for type, max for
|
||||||
// type, some value inbetween just to make sure
|
// type, some value in between just to make sure
|
||||||
SECTION( "lowest value" ) {
|
SECTION( "lowest value" ) {
|
||||||
Catch::uniform_integer_distribution<bool> dist( false, false );
|
Catch::uniform_integer_distribution<bool> dist( false, false );
|
||||||
CheckReturnValue( dist, pcg, false );
|
CheckReturnValue( dist, pcg, false );
|
||||||
|
@@ -7,10 +7,13 @@
|
|||||||
// SPDX-License-Identifier: BSL-1.0
|
// SPDX-License-Identifier: BSL-1.0
|
||||||
|
|
||||||
#include <catch2/internal/catch_enum_values_registry.hpp>
|
#include <catch2/internal/catch_enum_values_registry.hpp>
|
||||||
|
#include <catch2/matchers/catch_matchers_string.hpp>
|
||||||
#include <catch2/matchers/catch_matchers_vector.hpp>
|
#include <catch2/matchers/catch_matchers_vector.hpp>
|
||||||
#include <catch2/catch_test_macros.hpp>
|
#include <catch2/catch_test_macros.hpp>
|
||||||
#include <catch2/catch_template_test_macros.hpp>
|
#include <catch2/catch_template_test_macros.hpp>
|
||||||
|
|
||||||
|
#include <chrono>
|
||||||
|
|
||||||
enum class EnumClass3 { Value1, Value2, Value3, Value4 };
|
enum class EnumClass3 { Value1, Value2, Value3, Value4 };
|
||||||
|
|
||||||
struct UsesSentinel {
|
struct UsesSentinel {
|
||||||
@@ -95,3 +98,23 @@ TEMPLATE_TEST_CASE( "Stringifying char arrays with statically known sizes",
|
|||||||
TestType no_null_terminator[3] = { 'a', 'b', 'c' };
|
TestType no_null_terminator[3] = { 'a', 'b', 'c' };
|
||||||
CHECK( ::Catch::Detail::stringify( no_null_terminator ) == R"("abc")"s );
|
CHECK( ::Catch::Detail::stringify( no_null_terminator ) == R"("abc")"s );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_CASE( "#2944 - Stringifying dates before 1970 should not crash", "[.approvals]" ) {
|
||||||
|
using Catch::Matchers::Equals;
|
||||||
|
using Days = std::chrono::duration<int32_t, std::ratio<86400>>;
|
||||||
|
using SysDays = std::chrono::time_point<std::chrono::system_clock, Days>;
|
||||||
|
Catch::StringMaker<std::chrono::system_clock::time_point> sm;
|
||||||
|
|
||||||
|
// Check simple date first
|
||||||
|
const SysDays post1970{ Days{ 1 } };
|
||||||
|
auto converted_post = sm.convert( post1970 );
|
||||||
|
REQUIRE( converted_post == "1970-01-02T00:00:00Z" );
|
||||||
|
|
||||||
|
const SysDays pre1970{ Days{ -1 } };
|
||||||
|
auto converted_pre = sm.convert( pre1970 );
|
||||||
|
REQUIRE_THAT(
|
||||||
|
converted_pre,
|
||||||
|
Equals( "1969-12-31T00:00:00Z" ) ||
|
||||||
|
Equals( "gmtime from provided timepoint has failed. This "
|
||||||
|
"happens e.g. with pre-1970 dates using Microsoft libc" ) );
|
||||||
|
}
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
|
|
||||||
#include <helpers/type_with_lit_0_comparisons.hpp>
|
#include <helpers/type_with_lit_0_comparisons.hpp>
|
||||||
|
|
||||||
|
#include <array>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
|
||||||
// Setup for #1403 -- look for global overloads of operator << for classes
|
// Setup for #1403 -- look for global overloads of operator << for classes
|
||||||
@@ -34,6 +35,7 @@ static std::ostream& operator<<(std::ostream& out, foo::helper_1403 const&) {
|
|||||||
///////////////////////////////
|
///////////////////////////////
|
||||||
|
|
||||||
#include <catch2/catch_test_macros.hpp>
|
#include <catch2/catch_test_macros.hpp>
|
||||||
|
#include <catch2/generators/catch_generators_range.hpp>
|
||||||
#include <catch2/matchers/catch_matchers_string.hpp>
|
#include <catch2/matchers/catch_matchers_string.hpp>
|
||||||
|
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
@@ -467,3 +469,57 @@ TEST_CASE( "Comparing const std::weak_ordering instances must compile",
|
|||||||
REQUIRE( plain_ordering_1 == const_ordering_1 );
|
REQUIRE( plain_ordering_1 == const_ordering_1 );
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Reproduce issue with yaml-cpp iterators, where the `const_iterator`
|
||||||
|
// for Node type has `const T` as the value_type. This is wrong for
|
||||||
|
// multitude of reasons, but there might be other libraries in the wild
|
||||||
|
// that share this issue, and the workaround needed to support
|
||||||
|
// `from_range(iter, iter)` helper with those libraries is easy enough.
|
||||||
|
class HasBadIterator {
|
||||||
|
std::array<int, 10> m_arr{};
|
||||||
|
|
||||||
|
public:
|
||||||
|
class iterator {
|
||||||
|
const int* m_ptr = nullptr;
|
||||||
|
|
||||||
|
public:
|
||||||
|
iterator( const int* ptr ): m_ptr( ptr ) {}
|
||||||
|
|
||||||
|
using difference_type = std::ptrdiff_t;
|
||||||
|
using value_type = const int;
|
||||||
|
using pointer = const int*;
|
||||||
|
using reference = const int&;
|
||||||
|
using iterator_category = std::input_iterator_tag;
|
||||||
|
|
||||||
|
iterator& operator++() {
|
||||||
|
++m_ptr;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
iterator operator++( int ) {
|
||||||
|
auto ret( *this );
|
||||||
|
++( *this );
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
friend bool operator==( iterator lhs, iterator rhs ) {
|
||||||
|
return lhs.m_ptr == rhs.m_ptr;
|
||||||
|
}
|
||||||
|
friend bool operator!=( iterator lhs, iterator rhs ) {
|
||||||
|
return !( lhs == rhs );
|
||||||
|
}
|
||||||
|
|
||||||
|
int operator*() const { return *m_ptr; }
|
||||||
|
};
|
||||||
|
|
||||||
|
iterator cbegin() const { return { m_arr.data() }; }
|
||||||
|
iterator cend() const { return { m_arr.data() + m_arr.size() }; }
|
||||||
|
};
|
||||||
|
|
||||||
|
TEST_CASE("from_range(iter, iter) supports const_iterators", "[generators][from-range][approvals]") {
|
||||||
|
using namespace Catch::Generators;
|
||||||
|
|
||||||
|
HasBadIterator data;
|
||||||
|
auto gen = from_range(data.cbegin(), data.cend());
|
||||||
|
(void)gen;
|
||||||
|
}
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user