forked from catchorg/Catch2
Compare commits
137 Commits
v3.5.0
...
devel-pipe
Author | SHA1 | Date | |
---|---|---|---|
|
432695291a | ||
|
e63f3cc817 | ||
|
986ee2c793 | ||
|
18df97df00 | ||
|
e97ebe62e7 | ||
|
b2b7cbdc31 | ||
|
412cad546a | ||
|
bd70515c08 | ||
|
7a89b75737 | ||
|
02d3304782 | ||
|
77eca4e819 | ||
|
bc63412e2a | ||
|
fa306fc85e | ||
|
35c3403fbb | ||
|
31588bb4f5 | ||
|
f24569a1b4 | ||
|
a579b5f640 | ||
|
1538be67cb | ||
|
9721048a32 | ||
|
aad0a3a8d6 | ||
|
008676a741 | ||
|
fe483c056d | ||
|
b15158c1db | ||
|
8898cc6160 | ||
|
f7cd0ba051 | ||
|
33e24b14fc | ||
|
a40dd478f3 | ||
|
85b7f3d6ab | ||
|
7af96bbb22 | ||
|
22e6490325 | ||
|
595bf9864e | ||
|
381f29e974 | ||
|
37c8b2d2b3 | ||
|
292d64da32 | ||
|
4e8d92bf02 | ||
|
8ce2426e53 | ||
|
fa5a53df17 | ||
|
a654e4b038 | ||
|
ef713582d2 | ||
|
efb39689d9 | ||
|
42fe78d0ba | ||
|
2bce3e276b | ||
|
df04df94db | ||
|
f2320724a7 | ||
|
8e80b8f22c | ||
|
53ddf37af4 | ||
|
029fe3b460 | ||
|
65794fd2b8 | ||
|
838f8d71cb | ||
|
b5373dadca | ||
|
cd8f97e6c7 | ||
|
05fb437cbb | ||
|
71b11c4e33 | ||
|
0a6a2ce887 | ||
|
355a6e273b | ||
|
bff6e35e2b | ||
|
d99eb8bec8 | ||
|
f181de9df4 | ||
|
9271083a04 | ||
|
07701f946a | ||
|
7ce3579976 | ||
|
c0dfe13bb6 | ||
|
cad65c5003 | ||
|
ad99834c14 | ||
|
3cd90c5c3b | ||
|
202bdee977 | ||
|
bfe3ff8f19 | ||
|
a2a3c55058 | ||
|
eb8f2c5810 | ||
|
88f4ec3cc5 | ||
|
792c3b7549 | ||
|
1a44e6f661 | ||
|
459ac8562b | ||
|
8ac8190e49 | ||
|
b20b365fd2 | ||
|
4d8affc989 | ||
|
cde3509664 | ||
|
7677c1658e | ||
|
92d3b23913 | ||
|
dca87563bb | ||
|
da303cc668 | ||
|
c3fd4eb17e | ||
|
fb51116d5b | ||
|
ed6ac8a629 | ||
|
e7913f1363 | ||
|
4f3871d53f | ||
|
f476bcb633 | ||
|
024cfb3542 | ||
|
28c2f0b0c2 | ||
|
2e1b02a0e2 | ||
|
82e9b9b5f2 | ||
|
031a163a2c | ||
|
562f31029a | ||
|
62d4aecb8c | ||
|
b817497528 | ||
|
4f1b24df77 | ||
|
3157d6bbf1 | ||
|
4570fca24b | ||
|
0787132fc8 | ||
|
dc51386b9f | ||
|
bbba3d8a06 | ||
|
d937427f1f | ||
|
2a5de4e447 | ||
|
1078e7e95b | ||
|
79205da6a6 | ||
|
658acee86e | ||
|
05e10dfccc | ||
|
597ce12b65 | ||
|
05786fa7ec | ||
|
d79bfa05c7 | ||
|
6ebdd8fac2 | ||
|
7f931d6df4 | ||
|
a0ef2115f8 | ||
|
863c662c0e | ||
|
f981c9cbca | ||
|
b7b71ffd3a | ||
|
048d7f7796 | ||
|
a9a94bec13 | ||
|
c8262e1f40 | ||
|
08bdd43fcd | ||
|
1512dac7e4 | ||
|
b52d97855d | ||
|
eaafd07674 | ||
|
5d637d4c6b | ||
|
cd3c7ebe87 | ||
|
5d5f42f99b | ||
|
c57e349d1d | ||
|
822c44a203 | ||
|
2295d2c8cc | ||
|
2b69a3e216 | ||
|
c809cb4d1c | ||
|
9aadc3a53d | ||
|
64ade68ca2 | ||
|
680064d391 | ||
|
3acb8b30f1 | ||
|
3f23192e55 | ||
|
d40a3289e5 |
1
.bazelrc
1
.bazelrc
@@ -8,3 +8,4 @@ build:vs2022 --cxxopt=/std:c++17
|
|||||||
|
|
||||||
build:windows --config=vs2022
|
build:windows --config=vs2022
|
||||||
build:linux --config=gcc11
|
build:linux --config=gcc11
|
||||||
|
build:macos --cxxopt=-std=c++2b
|
||||||
|
81
.clang-tidy
Normal file
81
.clang-tidy
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
---
|
||||||
|
# Note: Alas, `Checks` is a string, not an array.
|
||||||
|
# Comments in the block string are not parsed and are passed in the value.
|
||||||
|
# They must thus be delimited by ',' from either side - then they are
|
||||||
|
# harmless. It's terrible, but it works.
|
||||||
|
Checks: >-
|
||||||
|
clang-diagnostic-*,
|
||||||
|
clang-analyzer-*,
|
||||||
|
-clang-analyzer-optin.core.EnumCastOutOfRange,
|
||||||
|
|
||||||
|
bugprone-*,
|
||||||
|
-bugprone-unchecked-optional-access,
|
||||||
|
,# This is ridiculous, as it triggers on constants,
|
||||||
|
-bugprone-implicit-widening-of-multiplication-result,
|
||||||
|
-bugprone-easily-swappable-parameters,
|
||||||
|
,# Is not really useful, has false positives, triggers for no-noexcept move constructors ...,
|
||||||
|
-bugprone-exception-escape,
|
||||||
|
-bugprone-narrowing-conversions,
|
||||||
|
-bugprone-chained-comparison,# RIP decomposers,
|
||||||
|
|
||||||
|
modernize-*,
|
||||||
|
-modernize-avoid-c-arrays,
|
||||||
|
-modernize-use-auto,
|
||||||
|
-modernize-use-emplace,
|
||||||
|
-modernize-use-nullptr,# it went crazy with three-way comparison operators,
|
||||||
|
-modernize-use-trailing-return-type,
|
||||||
|
-modernize-return-braced-init-list,
|
||||||
|
-modernize-concat-nested-namespaces,
|
||||||
|
-modernize-use-nodiscard,
|
||||||
|
-modernize-use-default-member-init,
|
||||||
|
-modernize-type-traits,# we need to support C++14,
|
||||||
|
-modernize-deprecated-headers,
|
||||||
|
,# There's a lot of these and most of them are probably not useful,
|
||||||
|
-modernize-pass-by-value,
|
||||||
|
|
||||||
|
performance-*,
|
||||||
|
-performance-enum-size,
|
||||||
|
|
||||||
|
portability-*,
|
||||||
|
|
||||||
|
readability-*,
|
||||||
|
-readability-braces-around-statements,
|
||||||
|
-readability-container-size-empty,
|
||||||
|
-readability-convert-member-functions-to-static,
|
||||||
|
-readability-else-after-return,
|
||||||
|
-readability-function-cognitive-complexity,
|
||||||
|
-readability-function-size,
|
||||||
|
-readability-identifier-length,
|
||||||
|
-readability-implicit-bool-conversion,
|
||||||
|
-readability-isolate-declaration,
|
||||||
|
-readability-magic-numbers,
|
||||||
|
-readability-named-parameter,
|
||||||
|
-readability-qualified-auto,
|
||||||
|
-readability-redundant-access-specifiers,
|
||||||
|
-readability-simplify-boolean-expr,
|
||||||
|
-readability-static-definition-in-anonymous-namespace,
|
||||||
|
-readability-uppercase-literal-suffix,
|
||||||
|
-readability-use-anyofallof,
|
||||||
|
-readability-avoid-return-with-void-value,
|
||||||
|
|
||||||
|
,# time hogs,
|
||||||
|
-bugprone-throw-keyword-missing,
|
||||||
|
-modernize-replace-auto-ptr,
|
||||||
|
-readability-identifier-naming,
|
||||||
|
|
||||||
|
,# We cannot use this until clang-tidy supports custom unique_ptr,
|
||||||
|
-bugprone-use-after-move,
|
||||||
|
,# Doesn't recognize unevaluated context in CATCH_MOVE and CATCH_FORWARD,
|
||||||
|
-bugprone-macro-repeated-side-effects,
|
||||||
|
WarningsAsErrors: >-
|
||||||
|
clang-analyzer-core.*,
|
||||||
|
clang-analyzer-cplusplus.*,
|
||||||
|
clang-analyzer-security.*,
|
||||||
|
clang-analyzer-unix.*,
|
||||||
|
performance-move-const-arg,
|
||||||
|
performance-unnecessary-value-param,
|
||||||
|
readability-duplicate-include,
|
||||||
|
HeaderFilterRegex: '.*\.(c|cxx|cpp)$'
|
||||||
|
FormatStyle: none
|
||||||
|
CheckOptions: {}
|
||||||
|
...
|
@@ -1,12 +1,8 @@
|
|||||||
cmake_minimum_required(VERSION 3.2.0)
|
cmake_minimum_required(VERSION 3.15)
|
||||||
project(test_package CXX)
|
project(PackageTest CXX)
|
||||||
|
|
||||||
include("${CMAKE_BINARY_DIR}/conanbuildinfo.cmake")
|
find_package(Catch2 CONFIG REQUIRED)
|
||||||
conan_basic_setup()
|
|
||||||
|
|
||||||
find_package(Catch2 REQUIRED CONFIG)
|
add_executable(test_package test_package.cpp)
|
||||||
|
target_link_libraries(test_package Catch2::Catch2WithMain)
|
||||||
add_executable(${PROJECT_NAME} test_package.cpp)
|
target_compile_features(test_package PRIVATE cxx_std_14)
|
||||||
|
|
||||||
target_link_libraries(${PROJECT_NAME} Catch2::Catch2WithMain)
|
|
||||||
set_target_properties(${PROJECT_NAME} PROPERTIES CXX_STANDARD 14)
|
|
||||||
|
@@ -1,12 +1,28 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from conans import ConanFile, CMake
|
from conan import ConanFile
|
||||||
|
from conan.tools.cmake import CMake, cmake_layout
|
||||||
|
from conan.tools.build import can_run
|
||||||
|
from conan.tools.files import save, load
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
|
||||||
class TestPackageConan(ConanFile):
|
class TestPackageConan(ConanFile):
|
||||||
settings = "os", "compiler", "build_type", "arch"
|
settings = "os", "compiler", "build_type", "arch"
|
||||||
generators = "cmake_find_package_multi", "cmake"
|
generators = "CMakeToolchain", "CMakeDeps", "VirtualRunEnv"
|
||||||
|
test_type = "explicit"
|
||||||
|
|
||||||
|
def requirements(self):
|
||||||
|
self.requires(self.tested_reference_str)
|
||||||
|
|
||||||
|
def layout(self):
|
||||||
|
cmake_layout(self)
|
||||||
|
|
||||||
|
def generate(self):
|
||||||
|
save(self, os.path.join(self.build_folder, "package_folder"),
|
||||||
|
self.dependencies[self.tested_reference_str].package_folder)
|
||||||
|
save(self, os.path.join(self.build_folder, "license"),
|
||||||
|
self.dependencies[self.tested_reference_str].license)
|
||||||
|
|
||||||
def build(self):
|
def build(self):
|
||||||
cmake = CMake(self)
|
cmake = CMake(self)
|
||||||
@@ -14,7 +30,11 @@ class TestPackageConan(ConanFile):
|
|||||||
cmake.build()
|
cmake.build()
|
||||||
|
|
||||||
def test(self):
|
def test(self):
|
||||||
assert os.path.isfile(os.path.join(
|
if can_run(self):
|
||||||
self.deps_cpp_info["catch2"].rootpath, "licenses", "LICENSE.txt"))
|
cmd = os.path.join(self.cpp.build.bindir, "test_package")
|
||||||
bin_path = os.path.join("bin", "test_package")
|
self.run(cmd, env="conanrun")
|
||||||
self.run("%s -s" % bin_path, run_environment=True)
|
|
||||||
|
package_folder = load(self, os.path.join(self.build_folder, "package_folder"))
|
||||||
|
license = load(self, os.path.join(self.build_folder, "license"))
|
||||||
|
assert os.path.isfile(os.path.join(package_folder, "licenses", "LICENSE.txt"))
|
||||||
|
assert license == 'BSL-1.0'
|
||||||
|
1
.github/workflows/linux-meson-builds.yml
vendored
1
.github/workflows/linux-meson-builds.yml
vendored
@@ -40,6 +40,5 @@ jobs:
|
|||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
working-directory: ${{runner.workspace}}/meson-build
|
working-directory: ${{runner.workspace}}/meson-build
|
||||||
# Hardcode 2 cores we know are there
|
|
||||||
run: |
|
run: |
|
||||||
meson test --verbose
|
meson test --verbose
|
||||||
|
52
.github/workflows/linux-other-builds.yml
vendored
52
.github/workflows/linux-other-builds.yml
vendored
@@ -102,5 +102,53 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
CTEST_OUTPUT_ON_FAILURE: 1
|
CTEST_OUTPUT_ON_FAILURE: 1
|
||||||
working-directory: ${{runner.workspace}}/build
|
working-directory: ${{runner.workspace}}/build
|
||||||
# Hardcode 2 cores we know are there
|
run: ctest -C ${{matrix.build_type}} -j `nproc` ${{matrix.other_ctest_args}}
|
||||||
run: ctest -C ${{matrix.build_type}} -j 2 ${{matrix.other_ctest_args}}
|
clang-tidy:
|
||||||
|
name: clang-tidy ${{matrix.version}}, ${{matrix.build_description}}, C++${{matrix.std}} ${{matrix.build_type}}
|
||||||
|
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:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Prepare environment
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y ninja-build clang-${{matrix.version}} clang-tidy-${{matrix.version}} ${{matrix.other_pkgs}}
|
||||||
|
|
||||||
|
- name: Configure build
|
||||||
|
working-directory: ${{runner.workspace}}
|
||||||
|
env:
|
||||||
|
CXX: clang++-${{matrix.version}}
|
||||||
|
CXXFLAGS: ${{matrix.cxxflags}}
|
||||||
|
# Note: $GITHUB_WORKSPACE is distinct from ${{runner.workspace}}.
|
||||||
|
# This is important
|
||||||
|
run: |
|
||||||
|
clangtidy="clang-tidy-${{matrix.version}};-use-color"
|
||||||
|
# Use a dummy compiler/linker/ar/ranlib to effectively disable the
|
||||||
|
# compilation and only run clang-tidy.
|
||||||
|
cmake -Bbuild -H$GITHUB_WORKSPACE \
|
||||||
|
-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_CXX_COMPILER_AR=/usr/bin/true \
|
||||||
|
-DCMAKE_RANLIB=/usr/bin/true \
|
||||||
|
-DCMAKE_CXX_LINK_EXECUTABLE=/usr/bin/true \
|
||||||
|
${{matrix.cmake_configurations}} \
|
||||||
|
-G Ninja
|
||||||
|
|
||||||
|
- name: Run clang-tidy
|
||||||
|
working-directory: ${{runner.workspace}}/build
|
||||||
|
run: ninja
|
||||||
|
3
.github/workflows/linux-simple-builds.yml
vendored
3
.github/workflows/linux-simple-builds.yml
vendored
@@ -120,5 +120,4 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
CTEST_OUTPUT_ON_FAILURE: 1
|
CTEST_OUTPUT_ON_FAILURE: 1
|
||||||
working-directory: ${{runner.workspace}}/build
|
working-directory: ${{runner.workspace}}/build
|
||||||
# Hardcode 2 cores we know are there
|
run: ctest -C ${{matrix.build_type}} -j `nproc`
|
||||||
run: ctest -C ${{matrix.build_type}} -j 2
|
|
||||||
|
44
.github/workflows/mac-builds-m1.yml
vendored
Normal file
44
.github/workflows/mac-builds-m1.yml
vendored
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
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`
|
9
.github/workflows/mac-builds.yml
vendored
9
.github/workflows/mac-builds.yml
vendored
@@ -4,15 +4,10 @@ on: [push, pull_request]
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
# macos-12 updated to a toolchain that crashes when linking the
|
runs-on: macos-12
|
||||||
# test binary. This seems to be a known bug in that version,
|
|
||||||
# and will eventually get fixed in an update. After that, we can go
|
|
||||||
# back to newer macos images.
|
|
||||||
runs-on: macos-11
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
cxx:
|
cxx:
|
||||||
- g++-11
|
|
||||||
- clang++
|
- clang++
|
||||||
build_type: [Debug, Release]
|
build_type: [Debug, Release]
|
||||||
std: [14, 17]
|
std: [14, 17]
|
||||||
@@ -29,8 +24,6 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
CXX: ${{matrix.cxx}}
|
CXX: ${{matrix.cxx}}
|
||||||
CXXFLAGS: ${{matrix.cxxflags}}
|
CXXFLAGS: ${{matrix.cxxflags}}
|
||||||
# Note: $GITHUB_WORKSPACE is distinct from ${{runner.workspace}}.
|
|
||||||
# This is important
|
|
||||||
run: |
|
run: |
|
||||||
cmake -Bbuild -H$GITHUB_WORKSPACE \
|
cmake -Bbuild -H$GITHUB_WORKSPACE \
|
||||||
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
|
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
|
||||||
|
31
.github/workflows/package-manager-builds.yaml
vendored
Normal file
31
.github/workflows/package-manager-builds.yaml
vendored
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
name: Package Manager Builds
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
conan_builds:
|
||||||
|
name: Conan ${{matrix.conan_version}}
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
conan_version:
|
||||||
|
- '1.63'
|
||||||
|
- '2.1'
|
||||||
|
|
||||||
|
include:
|
||||||
|
# Conan 1 has default profiles installed
|
||||||
|
- conan_version: '1.63'
|
||||||
|
profile_generate: 'false'
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install conan
|
||||||
|
run: pip install conan==${{matrix.conan_version}}
|
||||||
|
|
||||||
|
- name: Setup conan profiles
|
||||||
|
if: matrix.profile_generate != 'false'
|
||||||
|
run: conan profile detect
|
||||||
|
|
||||||
|
- name: Run conan package create
|
||||||
|
run: conan create . -tf .conan/test_package
|
3
.gitignore
vendored
3
.gitignore
vendored
@@ -25,7 +25,9 @@ Build
|
|||||||
cmake-build-*
|
cmake-build-*
|
||||||
benchmark-dir
|
benchmark-dir
|
||||||
.conan/test_package/build
|
.conan/test_package/build
|
||||||
|
**/CMakeUserPresets.json
|
||||||
bazel-*
|
bazel-*
|
||||||
|
MODULE.bazel.lock
|
||||||
build-fuzzers
|
build-fuzzers
|
||||||
debug-build
|
debug-build
|
||||||
.vscode
|
.vscode
|
||||||
@@ -35,3 +37,4 @@ msvc-sln*
|
|||||||
docs/doxygen
|
docs/doxygen
|
||||||
*.cache
|
*.cache
|
||||||
compile_commands.json
|
compile_commands.json
|
||||||
|
**/*.unapproved.txt
|
||||||
|
@@ -68,6 +68,7 @@ function(add_warnings_to_targets targets)
|
|||||||
"-Wmissing-noreturn"
|
"-Wmissing-noreturn"
|
||||||
"-Wmissing-prototypes"
|
"-Wmissing-prototypes"
|
||||||
"-Wmissing-variable-declarations"
|
"-Wmissing-variable-declarations"
|
||||||
|
"-Wnon-virtual-dtor"
|
||||||
"-Wnull-dereference"
|
"-Wnull-dereference"
|
||||||
"-Wold-style-cast"
|
"-Wold-style-cast"
|
||||||
"-Woverloaded-virtual"
|
"-Woverloaded-virtual"
|
||||||
@@ -78,6 +79,7 @@ function(add_warnings_to_targets targets)
|
|||||||
"-Wreturn-std-move"
|
"-Wreturn-std-move"
|
||||||
"-Wshadow"
|
"-Wshadow"
|
||||||
"-Wstrict-aliasing"
|
"-Wstrict-aliasing"
|
||||||
|
"-Wsubobject-linkage"
|
||||||
"-Wsuggest-destructor-override"
|
"-Wsuggest-destructor-override"
|
||||||
"-Wsuggest-override"
|
"-Wsuggest-override"
|
||||||
"-Wundef"
|
"-Wundef"
|
||||||
|
@@ -11,6 +11,7 @@ endif()
|
|||||||
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)
|
||||||
|
option(CATCH_ENABLE_REPRODUCIBLE_BUILD "Add compiler flags for improving build reproducibility" ON)
|
||||||
|
|
||||||
include(CMakeDependentOption)
|
include(CMakeDependentOption)
|
||||||
cmake_dependent_option(CATCH_BUILD_TESTING "Build the SelfTest project" ON "CATCH_DEVELOPMENT_BUILD" OFF)
|
cmake_dependent_option(CATCH_BUILD_TESTING "Build the SelfTest project" ON "CATCH_DEVELOPMENT_BUILD" OFF)
|
||||||
@@ -32,7 +33,7 @@ if (CMAKE_BINARY_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
project(Catch2
|
project(Catch2
|
||||||
VERSION 3.5.0 # CML version placeholder, don't delete
|
VERSION 3.7.0 # CML version placeholder, don't delete
|
||||||
LANGUAGES CXX
|
LANGUAGES CXX
|
||||||
# HOMEPAGE_URL is not supported until CMake version 3.12, which
|
# HOMEPAGE_URL is not supported until CMake version 3.12, which
|
||||||
# we do not target yet.
|
# we do not target yet.
|
||||||
@@ -75,8 +76,6 @@ endif()
|
|||||||
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)
|
||||||
set(SELF_TEST_DIR ${CATCH_DIR}/tests/SelfTest)
|
set(SELF_TEST_DIR ${CATCH_DIR}/tests/SelfTest)
|
||||||
set(BENCHMARK_DIR ${CATCH_DIR}/tests/Benchmark)
|
|
||||||
set(EXAMPLES_DIR ${CATCH_DIR}/examples)
|
|
||||||
|
|
||||||
# We need to bring-in the variables defined there to this scope
|
# We need to bring-in the variables defined there to this scope
|
||||||
add_subdirectory(src)
|
add_subdirectory(src)
|
||||||
@@ -199,4 +198,4 @@ if (NOT_SUBPROJECT)
|
|||||||
|
|
||||||
include( CPack )
|
include( CPack )
|
||||||
|
|
||||||
endif(NOT_SUBPROJECT)
|
endif()
|
||||||
|
306
Doxyfile
306
Doxyfile
@@ -1,4 +1,4 @@
|
|||||||
# Doxyfile 1.8.16
|
# Doxyfile 1.9.1
|
||||||
|
|
||||||
# This file describes the settings to be used by the documentation system
|
# This file describes the settings to be used by the documentation system
|
||||||
# doxygen (www.doxygen.org) for a project.
|
# doxygen (www.doxygen.org) for a project.
|
||||||
@@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8
|
|||||||
# title of most generated pages and in a few other places.
|
# title of most generated pages and in a few other places.
|
||||||
# The default value is: My Project.
|
# The default value is: My Project.
|
||||||
|
|
||||||
PROJECT_NAME = "Catch2"
|
PROJECT_NAME = Catch2
|
||||||
|
|
||||||
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
|
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
|
||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
@@ -51,6 +51,7 @@ PROJECT_BRIEF = "Popular C++ unit testing framework"
|
|||||||
# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
|
# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
|
||||||
# the logo to the output directory.
|
# the logo to the output directory.
|
||||||
|
|
||||||
|
PROJECT_LOGO =
|
||||||
|
|
||||||
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
|
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
|
||||||
# into which the generated documentation will be written. If a relative path is
|
# into which the generated documentation will be written. If a relative path is
|
||||||
@@ -216,6 +217,14 @@ QT_AUTOBRIEF = YES
|
|||||||
|
|
||||||
MULTILINE_CPP_IS_BRIEF = NO
|
MULTILINE_CPP_IS_BRIEF = NO
|
||||||
|
|
||||||
|
# By default Python docstrings are displayed as preformatted text and doxygen's
|
||||||
|
# special commands cannot be used. By setting PYTHON_DOCSTRING to NO the
|
||||||
|
# doxygen's special commands can be used and the contents of the docstring
|
||||||
|
# documentation blocks is shown as doxygen documentation.
|
||||||
|
# The default value is: YES.
|
||||||
|
|
||||||
|
PYTHON_DOCSTRING = YES
|
||||||
|
|
||||||
# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
|
# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
|
||||||
# documentation from any documented member that it re-implements.
|
# documentation from any documented member that it re-implements.
|
||||||
# The default value is: YES.
|
# The default value is: YES.
|
||||||
@@ -251,13 +260,7 @@ TAB_SIZE = 4
|
|||||||
# a double escape (\\{ and \\})
|
# a double escape (\\{ and \\})
|
||||||
|
|
||||||
ALIASES = "complexity=@par Complexity:" \
|
ALIASES = "complexity=@par Complexity:" \
|
||||||
"noexcept=**Noexcept**"
|
noexcept=**Noexcept**
|
||||||
|
|
||||||
# This tag can be used to specify a number of word-keyword mappings (TCL only).
|
|
||||||
# A mapping has the form "name=value". For example adding "class=itcl::class"
|
|
||||||
# will allow you to use the command class in the itcl::class meaning.
|
|
||||||
|
|
||||||
TCL_SUBST =
|
|
||||||
|
|
||||||
# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
|
# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
|
||||||
# only. Doxygen will then generate output that is more tailored for C. For
|
# only. Doxygen will then generate output that is more tailored for C. For
|
||||||
@@ -299,19 +302,22 @@ OPTIMIZE_OUTPUT_SLICE = NO
|
|||||||
# parses. With this tag you can assign which parser to use for a given
|
# parses. With this tag you can assign which parser to use for a given
|
||||||
# extension. Doxygen has a built-in mapping, but you can override or extend it
|
# extension. Doxygen has a built-in mapping, but you can override or extend it
|
||||||
# using this tag. The format is ext=language, where ext is a file extension, and
|
# using this tag. The format is ext=language, where ext is a file extension, and
|
||||||
# language is one of the parsers supported by doxygen: IDL, Java, Javascript,
|
# language is one of the parsers supported by doxygen: IDL, Java, JavaScript,
|
||||||
# Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice,
|
# Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, VHDL,
|
||||||
# Fortran (fixed format Fortran: FortranFixed, free formatted Fortran:
|
# Fortran (fixed format Fortran: FortranFixed, free formatted Fortran:
|
||||||
# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser
|
# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser
|
||||||
# tries to guess whether the code is fixed or free formatted code, this is the
|
# tries to guess whether the code is fixed or free formatted code, this is the
|
||||||
# default for Fortran type files), VHDL, tcl. For instance to make doxygen treat
|
# default for Fortran type files). For instance to make doxygen treat .inc files
|
||||||
# .inc files as Fortran files (default is PHP), and .f files as C (default is
|
# as Fortran files (default is PHP), and .f files as C (default is Fortran),
|
||||||
# Fortran), use: inc=Fortran f=C.
|
# use: inc=Fortran f=C.
|
||||||
#
|
#
|
||||||
# Note: For files without extension you can use no_extension as a placeholder.
|
# Note: For files without extension you can use no_extension as a placeholder.
|
||||||
#
|
#
|
||||||
# Note that for custom extensions you also need to set FILE_PATTERNS otherwise
|
# Note that for custom extensions you also need to set FILE_PATTERNS otherwise
|
||||||
# the files are not read by doxygen.
|
# the files are not read by doxygen. When specifying no_extension you should add
|
||||||
|
# * to the FILE_PATTERNS.
|
||||||
|
#
|
||||||
|
# Note see also the list of default file extension mappings.
|
||||||
|
|
||||||
EXTENSION_MAPPING =
|
EXTENSION_MAPPING =
|
||||||
|
|
||||||
@@ -445,6 +451,19 @@ TYPEDEF_HIDES_STRUCT = NO
|
|||||||
|
|
||||||
LOOKUP_CACHE_SIZE = 0
|
LOOKUP_CACHE_SIZE = 0
|
||||||
|
|
||||||
|
# The NUM_PROC_THREADS specifies the number threads doxygen is allowed to use
|
||||||
|
# during processing. When set to 0 doxygen will based this on the number of
|
||||||
|
# cores available in the system. You can set it explicitly to a value larger
|
||||||
|
# than 0 to get more control over the balance between CPU load and processing
|
||||||
|
# speed. At this moment only the input processing can be done using multiple
|
||||||
|
# threads. Since this is still an experimental feature the default is set to 1,
|
||||||
|
# which efficively disables parallel processing. Please report any issues you
|
||||||
|
# encounter. Generating dot graphs in parallel is controlled by the
|
||||||
|
# DOT_NUM_THREADS setting.
|
||||||
|
# Minimum value: 0, maximum value: 32, default value: 1.
|
||||||
|
|
||||||
|
NUM_PROC_THREADS = 1
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# Build related configuration options
|
# Build related configuration options
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
@@ -508,6 +527,13 @@ EXTRACT_LOCAL_METHODS = NO
|
|||||||
|
|
||||||
EXTRACT_ANON_NSPACES = NO
|
EXTRACT_ANON_NSPACES = NO
|
||||||
|
|
||||||
|
# If this flag is set to YES, the name of an unnamed parameter in a declaration
|
||||||
|
# will be determined by the corresponding definition. By default unnamed
|
||||||
|
# parameters remain unnamed in the output.
|
||||||
|
# The default value is: YES.
|
||||||
|
|
||||||
|
RESOLVE_UNNAMED_PARAMS = YES
|
||||||
|
|
||||||
# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
|
# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
|
||||||
# undocumented members inside documented classes or files. If set to NO these
|
# undocumented members inside documented classes or files. If set to NO these
|
||||||
# members will be included in the various overviews, but no documentation
|
# members will be included in the various overviews, but no documentation
|
||||||
@@ -525,8 +551,8 @@ HIDE_UNDOC_MEMBERS = NO
|
|||||||
HIDE_UNDOC_CLASSES = NO
|
HIDE_UNDOC_CLASSES = NO
|
||||||
|
|
||||||
# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
|
# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
|
||||||
# (class|struct|union) declarations. If set to NO, these declarations will be
|
# declarations. If set to NO, these declarations will be included in the
|
||||||
# included in the documentation.
|
# documentation.
|
||||||
# The default value is: NO.
|
# The default value is: NO.
|
||||||
|
|
||||||
HIDE_FRIEND_COMPOUNDS = NO
|
HIDE_FRIEND_COMPOUNDS = NO
|
||||||
@@ -545,11 +571,18 @@ HIDE_IN_BODY_DOCS = NO
|
|||||||
|
|
||||||
INTERNAL_DOCS = NO
|
INTERNAL_DOCS = NO
|
||||||
|
|
||||||
# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file
|
# With the correct setting of option CASE_SENSE_NAMES doxygen will better be
|
||||||
# names in lower-case letters. If set to YES, upper-case letters are also
|
# able to match the capabilities of the underlying filesystem. In case the
|
||||||
# allowed. This is useful if you have classes or files whose names only differ
|
# filesystem is case sensitive (i.e. it supports files in the same directory
|
||||||
# in case and if your file system supports case sensitive file names. Windows
|
# whose names only differ in casing), the option must be set to YES to properly
|
||||||
# (including Cygwin) ands Mac users are advised to set this option to NO.
|
# deal with such files in case they appear in the input. For filesystems that
|
||||||
|
# are not case sensitive the option should be be set to NO to properly deal with
|
||||||
|
# output files written for symbols that only differ in casing, such as for two
|
||||||
|
# classes, one named CLASS and the other named Class, and to also support
|
||||||
|
# references to files without having to specify the exact matching casing. On
|
||||||
|
# Windows (including Cygwin) and MacOS, users should typically set this option
|
||||||
|
# to NO, whereas on Linux or other Unix flavors it should typically be set to
|
||||||
|
# YES.
|
||||||
# The default value is: system dependent.
|
# The default value is: system dependent.
|
||||||
|
|
||||||
CASE_SENSE_NAMES = NO
|
CASE_SENSE_NAMES = NO
|
||||||
@@ -788,7 +821,10 @@ WARN_IF_DOC_ERROR = YES
|
|||||||
WARN_NO_PARAMDOC = YES
|
WARN_NO_PARAMDOC = YES
|
||||||
|
|
||||||
# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
|
# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
|
||||||
# a warning is encountered.
|
# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS
|
||||||
|
# then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but
|
||||||
|
# at the end of the doxygen process doxygen will return with a non-zero status.
|
||||||
|
# Possible values are: NO, YES and FAIL_ON_WARNINGS.
|
||||||
# The default value is: NO.
|
# The default value is: NO.
|
||||||
|
|
||||||
WARN_AS_ERROR = NO
|
WARN_AS_ERROR = NO
|
||||||
@@ -819,13 +855,13 @@ WARN_LOGFILE = doxygen.errors
|
|||||||
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
|
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
|
||||||
# Note: If this tag is empty the current directory is searched.
|
# Note: If this tag is empty the current directory is searched.
|
||||||
|
|
||||||
INPUT = "src/catch2"
|
INPUT = src/catch2
|
||||||
|
|
||||||
# This tag can be used to specify the character encoding of the source files
|
# This tag can be used to specify the character encoding of the source files
|
||||||
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
|
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
|
||||||
# libiconv (or the iconv built into libc) for the transcoding. See the libiconv
|
# libiconv (or the iconv built into libc) for the transcoding. See the libiconv
|
||||||
# documentation (see: https://www.gnu.org/software/libiconv/) for the list of
|
# documentation (see:
|
||||||
# possible encodings.
|
# https://www.gnu.org/software/libiconv/) for the list of possible encodings.
|
||||||
# The default value is: UTF-8.
|
# The default value is: UTF-8.
|
||||||
|
|
||||||
INPUT_ENCODING = UTF-8
|
INPUT_ENCODING = UTF-8
|
||||||
@@ -838,13 +874,61 @@ INPUT_ENCODING = UTF-8
|
|||||||
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
|
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
|
||||||
# read by doxygen.
|
# read by doxygen.
|
||||||
#
|
#
|
||||||
|
# Note the list of default checked file patterns might differ from the list of
|
||||||
|
# default file extension mappings.
|
||||||
|
#
|
||||||
# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
|
# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
|
||||||
# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
|
# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
|
||||||
# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
|
# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
|
||||||
# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08,
|
# *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment),
|
||||||
# *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, *.qsf and *.ice.
|
# *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, *.vhdl,
|
||||||
|
# *.ucf, *.qsf and *.ice.
|
||||||
|
|
||||||
# FILE_PATTERNS =
|
FILE_PATTERNS = *.c \
|
||||||
|
*.cc \
|
||||||
|
*.cxx \
|
||||||
|
*.cpp \
|
||||||
|
*.c++ \
|
||||||
|
*.java \
|
||||||
|
*.ii \
|
||||||
|
*.ixx \
|
||||||
|
*.ipp \
|
||||||
|
*.i++ \
|
||||||
|
*.inl \
|
||||||
|
*.idl \
|
||||||
|
*.ddl \
|
||||||
|
*.odl \
|
||||||
|
*.h \
|
||||||
|
*.hh \
|
||||||
|
*.hxx \
|
||||||
|
*.hpp \
|
||||||
|
*.h++ \
|
||||||
|
*.cs \
|
||||||
|
*.d \
|
||||||
|
*.php \
|
||||||
|
*.php4 \
|
||||||
|
*.php5 \
|
||||||
|
*.phtml \
|
||||||
|
*.inc \
|
||||||
|
*.m \
|
||||||
|
*.markdown \
|
||||||
|
*.md \
|
||||||
|
*.mm \
|
||||||
|
*.dox \
|
||||||
|
*.py \
|
||||||
|
*.pyw \
|
||||||
|
*.f90 \
|
||||||
|
*.f95 \
|
||||||
|
*.f03 \
|
||||||
|
*.f08 \
|
||||||
|
*.f18 \
|
||||||
|
*.f \
|
||||||
|
*.for \
|
||||||
|
*.vhd \
|
||||||
|
*.vhdl \
|
||||||
|
*.ucf \
|
||||||
|
*.qsf \
|
||||||
|
*.ice
|
||||||
|
|
||||||
# The RECURSIVE tag can be used to specify whether or not subdirectories should
|
# The RECURSIVE tag can be used to specify whether or not subdirectories should
|
||||||
# be searched for input files as well.
|
# be searched for input files as well.
|
||||||
@@ -968,6 +1052,7 @@ FILTER_SOURCE_PATTERNS =
|
|||||||
# (index.html). This can be useful if you have a project on for instance GitHub
|
# (index.html). This can be useful if you have a project on for instance GitHub
|
||||||
# and want to reuse the introduction page also for the doxygen output.
|
# and want to reuse the introduction page also for the doxygen output.
|
||||||
|
|
||||||
|
USE_MDFILE_AS_MAINPAGE =
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# Configuration options related to source browsing
|
# Configuration options related to source browsing
|
||||||
@@ -1055,6 +1140,44 @@ USE_HTAGS = NO
|
|||||||
|
|
||||||
VERBATIM_HEADERS = YES
|
VERBATIM_HEADERS = YES
|
||||||
|
|
||||||
|
# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the
|
||||||
|
# clang parser (see:
|
||||||
|
# http://clang.llvm.org/) for more accurate parsing at the cost of reduced
|
||||||
|
# performance. This can be particularly helpful with template rich C++ code for
|
||||||
|
# which doxygen's built-in parser lacks the necessary type information.
|
||||||
|
# Note: The availability of this option depends on whether or not doxygen was
|
||||||
|
# generated with the -Duse_libclang=ON option for CMake.
|
||||||
|
# The default value is: NO.
|
||||||
|
|
||||||
|
CLANG_ASSISTED_PARSING = NO
|
||||||
|
|
||||||
|
# If clang assisted parsing is enabled and the CLANG_ADD_INC_PATHS tag is set to
|
||||||
|
# YES then doxygen will add the directory of each input to the include path.
|
||||||
|
# The default value is: YES.
|
||||||
|
|
||||||
|
CLANG_ADD_INC_PATHS = YES
|
||||||
|
|
||||||
|
# If clang assisted parsing is enabled you can provide the compiler with command
|
||||||
|
# line options that you would normally use when invoking the compiler. Note that
|
||||||
|
# the include paths will already be set by doxygen for the files and directories
|
||||||
|
# specified with INPUT and INCLUDE_PATH.
|
||||||
|
# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES.
|
||||||
|
|
||||||
|
CLANG_OPTIONS =
|
||||||
|
|
||||||
|
# If clang assisted parsing is enabled you can provide the clang parser with the
|
||||||
|
# path to the directory containing a file called compile_commands.json. This
|
||||||
|
# file is the compilation database (see:
|
||||||
|
# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) containing the
|
||||||
|
# options used when the source files were built. This is equivalent to
|
||||||
|
# specifying the -p option to a clang tool, such as clang-check. These options
|
||||||
|
# will then be passed to the parser. Any options specified with CLANG_OPTIONS
|
||||||
|
# will be added as well.
|
||||||
|
# Note: The availability of this option depends on whether or not doxygen was
|
||||||
|
# generated with the -Duse_libclang=ON option for CMake.
|
||||||
|
|
||||||
|
CLANG_DATABASE_PATH =
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# Configuration options related to the alphabetical class index
|
# Configuration options related to the alphabetical class index
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
@@ -1066,13 +1189,6 @@ VERBATIM_HEADERS = YES
|
|||||||
|
|
||||||
ALPHABETICAL_INDEX = YES
|
ALPHABETICAL_INDEX = YES
|
||||||
|
|
||||||
# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
|
|
||||||
# which the alphabetical index list will be split.
|
|
||||||
# Minimum value: 1, maximum value: 20, default value: 5.
|
|
||||||
# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
|
|
||||||
|
|
||||||
COLS_IN_ALPHA_INDEX = 5
|
|
||||||
|
|
||||||
# In case all classes in a project start with a common prefix, all classes will
|
# In case all classes in a project start with a common prefix, all classes will
|
||||||
# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
|
# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
|
||||||
# can be used to specify a prefix (or a list of prefixes) that should be ignored
|
# can be used to specify a prefix (or a list of prefixes) that should be ignored
|
||||||
@@ -1211,9 +1327,9 @@ HTML_TIMESTAMP = NO
|
|||||||
|
|
||||||
# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML
|
# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML
|
||||||
# documentation will contain a main index with vertical navigation menus that
|
# documentation will contain a main index with vertical navigation menus that
|
||||||
# are dynamically created via Javascript. If disabled, the navigation index will
|
# are dynamically created via JavaScript. If disabled, the navigation index will
|
||||||
# consists of multiple levels of tabs that are statically embedded in every HTML
|
# consists of multiple levels of tabs that are statically embedded in every HTML
|
||||||
# page. Disable this option to support browsers that do not have Javascript,
|
# page. Disable this option to support browsers that do not have JavaScript,
|
||||||
# like the Qt help browser.
|
# like the Qt help browser.
|
||||||
# The default value is: YES.
|
# The default value is: YES.
|
||||||
# This tag requires that the tag GENERATE_HTML is set to YES.
|
# This tag requires that the tag GENERATE_HTML is set to YES.
|
||||||
@@ -1243,10 +1359,11 @@ HTML_INDEX_NUM_ENTRIES = 100
|
|||||||
|
|
||||||
# If the GENERATE_DOCSET tag is set to YES, additional index files will be
|
# If the GENERATE_DOCSET tag is set to YES, additional index files will be
|
||||||
# generated that can be used as input for Apple's Xcode 3 integrated development
|
# generated that can be used as input for Apple's Xcode 3 integrated development
|
||||||
# environment (see: https://developer.apple.com/xcode/), introduced with OSX
|
# environment (see:
|
||||||
# 10.5 (Leopard). To create a documentation set, doxygen will generate a
|
# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To
|
||||||
# Makefile in the HTML output directory. Running make will produce the docset in
|
# create a documentation set, doxygen will generate a Makefile in the HTML
|
||||||
# that directory and running make install will install the docset in
|
# output directory. Running make will produce the docset in that directory and
|
||||||
|
# running make install will install the docset in
|
||||||
# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
|
# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
|
||||||
# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy
|
# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy
|
||||||
# genXcode/_index.html for more information.
|
# genXcode/_index.html for more information.
|
||||||
@@ -1288,8 +1405,8 @@ DOCSET_PUBLISHER_NAME = Publisher
|
|||||||
# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
|
# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
|
||||||
# additional HTML index files: index.hhp, index.hhc, and index.hhk. The
|
# additional HTML index files: index.hhp, index.hhc, and index.hhk. The
|
||||||
# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
|
# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
|
||||||
# (see: https://www.microsoft.com/en-us/download/details.aspx?id=21138) on
|
# (see:
|
||||||
# Windows.
|
# https://www.microsoft.com/en-us/download/details.aspx?id=21138) on Windows.
|
||||||
#
|
#
|
||||||
# The HTML Help Workshop contains a compiler that can convert all HTML output
|
# The HTML Help Workshop contains a compiler that can convert all HTML output
|
||||||
# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
|
# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
|
||||||
@@ -1364,7 +1481,8 @@ QCH_FILE =
|
|||||||
|
|
||||||
# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
|
# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
|
||||||
# Project output. For more information please see Qt Help Project / Namespace
|
# Project output. For more information please see Qt Help Project / Namespace
|
||||||
# (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace).
|
# (see:
|
||||||
|
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace).
|
||||||
# The default value is: org.doxygen.Project.
|
# The default value is: org.doxygen.Project.
|
||||||
# This tag requires that the tag GENERATE_QHP is set to YES.
|
# This tag requires that the tag GENERATE_QHP is set to YES.
|
||||||
|
|
||||||
@@ -1372,8 +1490,8 @@ QHP_NAMESPACE = org.doxygen.Project
|
|||||||
|
|
||||||
# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
|
# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
|
||||||
# Help Project output. For more information please see Qt Help Project / Virtual
|
# Help Project output. For more information please see Qt Help Project / Virtual
|
||||||
# Folders (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-
|
# Folders (see:
|
||||||
# folders).
|
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders).
|
||||||
# The default value is: doc.
|
# The default value is: doc.
|
||||||
# This tag requires that the tag GENERATE_QHP is set to YES.
|
# This tag requires that the tag GENERATE_QHP is set to YES.
|
||||||
|
|
||||||
@@ -1381,16 +1499,16 @@ QHP_VIRTUAL_FOLDER = doc
|
|||||||
|
|
||||||
# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
|
# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
|
||||||
# filter to add. For more information please see Qt Help Project / Custom
|
# filter to add. For more information please see Qt Help Project / Custom
|
||||||
# Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-
|
# Filters (see:
|
||||||
# filters).
|
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters).
|
||||||
# This tag requires that the tag GENERATE_QHP is set to YES.
|
# This tag requires that the tag GENERATE_QHP is set to YES.
|
||||||
|
|
||||||
QHP_CUST_FILTER_NAME =
|
QHP_CUST_FILTER_NAME =
|
||||||
|
|
||||||
# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
|
# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
|
||||||
# custom filter to add. For more information please see Qt Help Project / Custom
|
# custom filter to add. For more information please see Qt Help Project / Custom
|
||||||
# Filters (see: https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-
|
# Filters (see:
|
||||||
# filters).
|
# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters).
|
||||||
# This tag requires that the tag GENERATE_QHP is set to YES.
|
# This tag requires that the tag GENERATE_QHP is set to YES.
|
||||||
|
|
||||||
QHP_CUST_FILTER_ATTRS =
|
QHP_CUST_FILTER_ATTRS =
|
||||||
@@ -1402,9 +1520,9 @@ QHP_CUST_FILTER_ATTRS =
|
|||||||
|
|
||||||
QHP_SECT_FILTER_ATTRS =
|
QHP_SECT_FILTER_ATTRS =
|
||||||
|
|
||||||
# The QHG_LOCATION tag can be used to specify the location of Qt's
|
# The QHG_LOCATION tag can be used to specify the location (absolute path
|
||||||
# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the
|
# including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to
|
||||||
# generated .qhp file.
|
# run qhelpgenerator on the generated .qhp file.
|
||||||
# This tag requires that the tag GENERATE_QHP is set to YES.
|
# This tag requires that the tag GENERATE_QHP is set to YES.
|
||||||
|
|
||||||
QHG_LOCATION =
|
QHG_LOCATION =
|
||||||
@@ -1481,6 +1599,17 @@ TREEVIEW_WIDTH = 250
|
|||||||
|
|
||||||
EXT_LINKS_IN_WINDOW = NO
|
EXT_LINKS_IN_WINDOW = NO
|
||||||
|
|
||||||
|
# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg
|
||||||
|
# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see
|
||||||
|
# https://inkscape.org) to generate formulas as SVG images instead of PNGs for
|
||||||
|
# the HTML output. These images will generally look nicer at scaled resolutions.
|
||||||
|
# Possible values are: png (the default) and svg (looks nicer but requires the
|
||||||
|
# pdf2svg or inkscape tool).
|
||||||
|
# The default value is: png.
|
||||||
|
# This tag requires that the tag GENERATE_HTML is set to YES.
|
||||||
|
|
||||||
|
HTML_FORMULA_FORMAT = png
|
||||||
|
|
||||||
# Use this tag to change the font size of LaTeX formulas included as images in
|
# Use this tag to change the font size of LaTeX formulas included as images in
|
||||||
# the HTML documentation. When you change the font size after a successful
|
# the HTML documentation. When you change the font size after a successful
|
||||||
# doxygen run you need to manually remove any form_*.png images from the HTML
|
# doxygen run you need to manually remove any form_*.png images from the HTML
|
||||||
@@ -1501,8 +1630,14 @@ FORMULA_FONTSIZE = 10
|
|||||||
|
|
||||||
FORMULA_TRANSPARENT = YES
|
FORMULA_TRANSPARENT = YES
|
||||||
|
|
||||||
|
# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands
|
||||||
|
# to create new LaTeX commands to be used in formulas as building blocks. See
|
||||||
|
# the section "Including formulas" for details.
|
||||||
|
|
||||||
|
FORMULA_MACROFILE =
|
||||||
|
|
||||||
# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
|
# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
|
||||||
# https://www.mathjax.org) which uses client side Javascript for the rendering
|
# https://www.mathjax.org) which uses client side JavaScript for the rendering
|
||||||
# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX
|
# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX
|
||||||
# installed or if you want to formulas look prettier in the HTML output. When
|
# installed or if you want to formulas look prettier in the HTML output. When
|
||||||
# enabled you may also need to install MathJax separately and configure the path
|
# enabled you may also need to install MathJax separately and configure the path
|
||||||
@@ -1514,7 +1649,7 @@ USE_MATHJAX = YES
|
|||||||
|
|
||||||
# When MathJax is enabled you can set the default output format to be used for
|
# When MathJax is enabled you can set the default output format to be used for
|
||||||
# the MathJax output. See the MathJax site (see:
|
# the MathJax output. See the MathJax site (see:
|
||||||
# http://docs.mathjax.org/en/latest/output.html) for more details.
|
# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details.
|
||||||
# Possible values are: HTML-CSS (which is slower, but has the best
|
# Possible values are: HTML-CSS (which is slower, but has the best
|
||||||
# compatibility), NativeMML (i.e. MathML) and SVG.
|
# compatibility), NativeMML (i.e. MathML) and SVG.
|
||||||
# The default value is: HTML-CSS.
|
# The default value is: HTML-CSS.
|
||||||
@@ -1530,7 +1665,7 @@ MATHJAX_FORMAT = HTML-CSS
|
|||||||
# Content Delivery Network so you can quickly see the result without installing
|
# Content Delivery Network so you can quickly see the result without installing
|
||||||
# MathJax. However, it is strongly recommended to install a local copy of
|
# MathJax. However, it is strongly recommended to install a local copy of
|
||||||
# MathJax from https://www.mathjax.org before deployment.
|
# MathJax from https://www.mathjax.org before deployment.
|
||||||
# The default value is: https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/.
|
# The default value is: https://cdn.jsdelivr.net/npm/mathjax@2.
|
||||||
# This tag requires that the tag USE_MATHJAX is set to YES.
|
# This tag requires that the tag USE_MATHJAX is set to YES.
|
||||||
|
|
||||||
MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest
|
MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest
|
||||||
@@ -1545,7 +1680,8 @@ MATHJAX_EXTENSIONS = TeX/AMSmath \
|
|||||||
|
|
||||||
# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
|
# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
|
||||||
# of code that will be used on startup of the MathJax code. See the MathJax site
|
# of code that will be used on startup of the MathJax code. See the MathJax site
|
||||||
# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an
|
# (see:
|
||||||
|
# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an
|
||||||
# example see the documentation.
|
# example see the documentation.
|
||||||
# This tag requires that the tag USE_MATHJAX is set to YES.
|
# This tag requires that the tag USE_MATHJAX is set to YES.
|
||||||
|
|
||||||
@@ -1573,7 +1709,7 @@ MATHJAX_CODEFILE =
|
|||||||
SEARCHENGINE = YES
|
SEARCHENGINE = YES
|
||||||
|
|
||||||
# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
|
# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
|
||||||
# implemented using a web server instead of a web client using Javascript. There
|
# implemented using a web server instead of a web client using JavaScript. There
|
||||||
# are two flavors of web server based searching depending on the EXTERNAL_SEARCH
|
# are two flavors of web server based searching depending on the EXTERNAL_SEARCH
|
||||||
# setting. When disabled, doxygen will generate a PHP script for searching and
|
# setting. When disabled, doxygen will generate a PHP script for searching and
|
||||||
# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing
|
# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing
|
||||||
@@ -1592,7 +1728,8 @@ SERVER_BASED_SEARCH = NO
|
|||||||
#
|
#
|
||||||
# Doxygen ships with an example indexer (doxyindexer) and search engine
|
# Doxygen ships with an example indexer (doxyindexer) and search engine
|
||||||
# (doxysearch.cgi) which are based on the open source search engine library
|
# (doxysearch.cgi) which are based on the open source search engine library
|
||||||
# Xapian (see: https://xapian.org/).
|
# Xapian (see:
|
||||||
|
# https://xapian.org/).
|
||||||
#
|
#
|
||||||
# See the section "External Indexing and Searching" for details.
|
# See the section "External Indexing and Searching" for details.
|
||||||
# The default value is: NO.
|
# The default value is: NO.
|
||||||
@@ -1605,8 +1742,9 @@ EXTERNAL_SEARCH = NO
|
|||||||
#
|
#
|
||||||
# Doxygen ships with an example indexer (doxyindexer) and search engine
|
# Doxygen ships with an example indexer (doxyindexer) and search engine
|
||||||
# (doxysearch.cgi) which are based on the open source search engine library
|
# (doxysearch.cgi) which are based on the open source search engine library
|
||||||
# Xapian (see: https://xapian.org/). See the section "External Indexing and
|
# Xapian (see:
|
||||||
# Searching" for details.
|
# https://xapian.org/). See the section "External Indexing and Searching" for
|
||||||
|
# details.
|
||||||
# This tag requires that the tag SEARCHENGINE is set to YES.
|
# This tag requires that the tag SEARCHENGINE is set to YES.
|
||||||
|
|
||||||
SEARCHENGINE_URL =
|
SEARCHENGINE_URL =
|
||||||
@@ -1770,9 +1908,11 @@ LATEX_EXTRA_FILES =
|
|||||||
|
|
||||||
PDF_HYPERLINKS = YES
|
PDF_HYPERLINKS = YES
|
||||||
|
|
||||||
# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate
|
# If the USE_PDFLATEX tag is set to YES, doxygen will use the engine as
|
||||||
# the PDF file directly from the LaTeX files. Set this option to YES, to get a
|
# specified with LATEX_CMD_NAME to generate the PDF file directly from the LaTeX
|
||||||
# higher quality PDF documentation.
|
# files. Set this option to YES, to get a higher quality PDF documentation.
|
||||||
|
#
|
||||||
|
# See also section LATEX_CMD_NAME for selecting the engine.
|
||||||
# The default value is: YES.
|
# The default value is: YES.
|
||||||
# This tag requires that the tag GENERATE_LATEX is set to YES.
|
# This tag requires that the tag GENERATE_LATEX is set to YES.
|
||||||
|
|
||||||
@@ -2204,7 +2344,7 @@ HIDE_UNDOC_RELATIONS = YES
|
|||||||
# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
|
# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
|
||||||
# Bell Labs. The other options in this section have no effect if this option is
|
# Bell Labs. The other options in this section have no effect if this option is
|
||||||
# set to NO
|
# set to NO
|
||||||
# The default value is: NO.
|
# The default value is: YES.
|
||||||
|
|
||||||
HAVE_DOT = YES
|
HAVE_DOT = YES
|
||||||
|
|
||||||
@@ -2283,10 +2423,32 @@ UML_LOOK = NO
|
|||||||
# but if the number exceeds 15, the total amount of fields shown is limited to
|
# but if the number exceeds 15, the total amount of fields shown is limited to
|
||||||
# 10.
|
# 10.
|
||||||
# Minimum value: 0, maximum value: 100, default value: 10.
|
# Minimum value: 0, maximum value: 100, default value: 10.
|
||||||
# This tag requires that the tag HAVE_DOT is set to YES.
|
# This tag requires that the tag UML_LOOK is set to YES.
|
||||||
|
|
||||||
UML_LIMIT_NUM_FIELDS = 10
|
UML_LIMIT_NUM_FIELDS = 10
|
||||||
|
|
||||||
|
# If the DOT_UML_DETAILS tag is set to NO, doxygen will show attributes and
|
||||||
|
# methods without types and arguments in the UML graphs. If the DOT_UML_DETAILS
|
||||||
|
# tag is set to YES, doxygen will add type and arguments for attributes and
|
||||||
|
# methods in the UML graphs. If the DOT_UML_DETAILS tag is set to NONE, doxygen
|
||||||
|
# will not generate fields with class member information in the UML graphs. The
|
||||||
|
# class diagrams will look similar to the default class diagrams but using UML
|
||||||
|
# notation for the relationships.
|
||||||
|
# Possible values are: NO, YES and NONE.
|
||||||
|
# The default value is: NO.
|
||||||
|
# This tag requires that the tag UML_LOOK is set to YES.
|
||||||
|
|
||||||
|
DOT_UML_DETAILS = NO
|
||||||
|
|
||||||
|
# The DOT_WRAP_THRESHOLD tag can be used to set the maximum number of characters
|
||||||
|
# to display on a single line. If the actual line length exceeds this threshold
|
||||||
|
# significantly it will wrapped across multiple lines. Some heuristics are apply
|
||||||
|
# to avoid ugly line breaks.
|
||||||
|
# Minimum value: 0, maximum value: 1000, default value: 17.
|
||||||
|
# This tag requires that the tag HAVE_DOT is set to YES.
|
||||||
|
|
||||||
|
DOT_WRAP_THRESHOLD = 17
|
||||||
|
|
||||||
# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
|
# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
|
||||||
# collaboration graphs will show the relations between templates and their
|
# collaboration graphs will show the relations between templates and their
|
||||||
# instances.
|
# instances.
|
||||||
@@ -2360,7 +2522,9 @@ DIRECTORY_GRAPH = NO
|
|||||||
# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
|
# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
|
||||||
# to make the SVG files visible in IE 9+ (other browsers do not have this
|
# to make the SVG files visible in IE 9+ (other browsers do not have this
|
||||||
# requirement).
|
# requirement).
|
||||||
# Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo,
|
# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd,
|
||||||
|
# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo,
|
||||||
|
# gif:cairo:gd, gif:gd, gif:gd:gd, svg, png:gd, png:gd:gd, png:cairo,
|
||||||
# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and
|
# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and
|
||||||
# png:gdiplus:gdiplus.
|
# png:gdiplus:gdiplus.
|
||||||
# The default value is: png.
|
# The default value is: png.
|
||||||
@@ -2476,9 +2640,11 @@ DOT_MULTI_TARGETS = YES
|
|||||||
|
|
||||||
GENERATE_LEGEND = YES
|
GENERATE_LEGEND = YES
|
||||||
|
|
||||||
# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot
|
# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate
|
||||||
# files that are used to generate the various graphs.
|
# files that are used to generate the various graphs.
|
||||||
|
#
|
||||||
|
# Note: This setting is not only used for dot files but also for msc and
|
||||||
|
# plantuml temporary files.
|
||||||
# The default value is: YES.
|
# The default value is: YES.
|
||||||
# This tag requires that the tag HAVE_DOT is set to YES.
|
|
||||||
|
|
||||||
DOT_CLEANUP = YES
|
DOT_CLEANUP = YES
|
||||||
|
3
MODULE.bazel
Normal file
3
MODULE.bazel
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
module(name = "catch2")
|
||||||
|
|
||||||
|
bazel_dep(name = "bazel_skylib", version = "1.7.1")
|
@@ -4,10 +4,10 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|||||||
|
|
||||||
http_archive(
|
http_archive(
|
||||||
name = "bazel_skylib",
|
name = "bazel_skylib",
|
||||||
sha256 = "66ffd9315665bfaafc96b52278f57c7e2dd09f5ede279ea6d39b2be471e7e3aa",
|
sha256 = "bc283cdfcd526a52c3201279cda4bc298652efa898b10b4db0837dc51652756f",
|
||||||
urls = [
|
urls = [
|
||||||
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.4.2/bazel-skylib-1.4.2.tar.gz",
|
"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.4.2/bazel-skylib-1.4.2.tar.gz",
|
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
15
appveyor.yml
15
appveyor.yml
@@ -5,10 +5,10 @@ version: "{build}-{branch}"
|
|||||||
clone_depth: 20
|
clone_depth: 20
|
||||||
|
|
||||||
# We want to build everything, except for branches that are explicitly
|
# We want to build everything, except for branches that are explicitly
|
||||||
# for messing around with travis.
|
# for messing around with Github Actions.
|
||||||
branches:
|
branches:
|
||||||
except:
|
except:
|
||||||
- /dev-travis.+/
|
- /devel-gha.+/
|
||||||
|
|
||||||
|
|
||||||
# We need a more up to date pip because Python 2.7 is EOL soon
|
# We need a more up to date pip because Python 2.7 is EOL soon
|
||||||
@@ -70,3 +70,14 @@ environment:
|
|||||||
additional_flags: "/permissive- /std:c++latest"
|
additional_flags: "/permissive- /std:c++latest"
|
||||||
platform: x64
|
platform: x64
|
||||||
configuration: Debug
|
configuration: Debug
|
||||||
|
|
||||||
|
- FLAVOR: VS 2017 x64 Debug
|
||||||
|
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
||||||
|
platform: x64
|
||||||
|
configuration: Debug
|
||||||
|
|
||||||
|
- FLAVOR: VS 2017 x64 Release Coverage
|
||||||
|
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
||||||
|
coverage: 1
|
||||||
|
platform: x64
|
||||||
|
configuration: Debug
|
||||||
|
133
conanfile.py
Normal file → Executable file
133
conanfile.py
Normal file → Executable file
@@ -1,5 +1,14 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
from conans import ConanFile, CMake, tools
|
from conan import ConanFile
|
||||||
|
from conan.tools.cmake import CMake, CMakeToolchain, CMakeDeps, cmake_layout
|
||||||
|
from conan.tools.files import copy, rmdir
|
||||||
|
from conan.tools.build import check_min_cppstd
|
||||||
|
from conan.tools.scm import Version
|
||||||
|
from conan.errors import ConanInvalidConfiguration
|
||||||
|
import os
|
||||||
|
import re
|
||||||
|
|
||||||
|
required_conan_version = ">=1.53.0"
|
||||||
|
|
||||||
class CatchConan(ConanFile):
|
class CatchConan(ConanFile):
|
||||||
name = "catch2"
|
name = "catch2"
|
||||||
@@ -8,53 +17,113 @@ class CatchConan(ConanFile):
|
|||||||
url = "https://github.com/catchorg/Catch2"
|
url = "https://github.com/catchorg/Catch2"
|
||||||
homepage = url
|
homepage = url
|
||||||
license = "BSL-1.0"
|
license = "BSL-1.0"
|
||||||
|
version = "latest"
|
||||||
exports = "LICENSE.txt"
|
|
||||||
exports_sources = ("src/*", "CMakeLists.txt", "CMake/*", "extras/*")
|
|
||||||
|
|
||||||
settings = "os", "compiler", "build_type", "arch"
|
settings = "os", "compiler", "build_type", "arch"
|
||||||
|
extension_properties = {"compatibility_cppstd": False}
|
||||||
|
|
||||||
generators = "cmake"
|
options = {
|
||||||
|
"shared": [True, False],
|
||||||
|
"fPIC": [True, False],
|
||||||
|
}
|
||||||
|
default_options = {
|
||||||
|
"shared": False,
|
||||||
|
"fPIC": True,
|
||||||
|
}
|
||||||
|
|
||||||
def _configure_cmake(self):
|
@property
|
||||||
cmake = CMake(self)
|
def _min_cppstd(self):
|
||||||
cmake.definitions["BUILD_TESTING"] = "OFF"
|
return "14"
|
||||||
cmake.definitions["CATCH_INSTALL_DOCS"] = "OFF"
|
|
||||||
cmake.definitions["CATCH_INSTALL_EXTRAS"] = "ON"
|
@property
|
||||||
cmake.configure(build_folder="build")
|
def _compilers_minimum_version(self):
|
||||||
return cmake
|
return {
|
||||||
|
"gcc": "7",
|
||||||
|
"Visual Studio": "15",
|
||||||
|
"msvc": "191",
|
||||||
|
"clang": "5",
|
||||||
|
"apple-clang": "10",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def set_version(self):
|
||||||
|
pattern = re.compile(r"\w*VERSION (\d+\.\d+\.\d+) # CML version placeholder, don't delete")
|
||||||
|
with open("CMakeLists.txt") as file:
|
||||||
|
for line in file:
|
||||||
|
result = pattern.search(line)
|
||||||
|
if result:
|
||||||
|
self.version = result.group(1)
|
||||||
|
|
||||||
|
self.output.info(f'Using version: {self.version}')
|
||||||
|
|
||||||
|
def export(self):
|
||||||
|
copy(self, "LICENSE.txt", src=self.recipe_folder, dst=self.export_folder)
|
||||||
|
|
||||||
|
def export_sources(self):
|
||||||
|
copy(self, "CMakeLists.txt", src=self.recipe_folder, dst=self.export_sources_folder)
|
||||||
|
copy(self, "src/*", src=self.recipe_folder, dst=self.export_sources_folder)
|
||||||
|
copy(self, "extras/*", src=self.recipe_folder, dst=self.export_sources_folder)
|
||||||
|
copy(self, "CMake/*", src=self.recipe_folder, dst=self.export_sources_folder)
|
||||||
|
|
||||||
|
def config_options(self):
|
||||||
|
if self.settings.os == "Windows":
|
||||||
|
del self.options.fPIC
|
||||||
|
|
||||||
|
def configure(self):
|
||||||
|
if self.options.shared:
|
||||||
|
self.options.rm_safe("fPIC")
|
||||||
|
|
||||||
|
def layout(self):
|
||||||
|
cmake_layout(self)
|
||||||
|
|
||||||
|
def validate(self):
|
||||||
|
if self.settings.compiler.get_safe("cppstd"):
|
||||||
|
check_min_cppstd(self, self._min_cppstd)
|
||||||
|
# INFO: Conan 1.x does not specify cppstd by default, so we need to check the compiler version instead.
|
||||||
|
minimum_version = self._compilers_minimum_version.get(str(self.settings.compiler), False)
|
||||||
|
if minimum_version and Version(self.settings.compiler.version) < minimum_version:
|
||||||
|
raise ConanInvalidConfiguration(f"{self.ref} requires C++{self._min_cppstd}, which your compiler doesn't support")
|
||||||
|
|
||||||
|
def generate(self):
|
||||||
|
tc = CMakeToolchain(self)
|
||||||
|
tc.cache_variables["BUILD_TESTING"] = False
|
||||||
|
tc.cache_variables["CATCH_INSTALL_DOCS"] = False
|
||||||
|
tc.cache_variables["CATCH_INSTALL_EXTRAS"] = True
|
||||||
|
tc.generate()
|
||||||
|
|
||||||
|
deps = CMakeDeps(self)
|
||||||
|
deps.generate()
|
||||||
|
|
||||||
def build(self):
|
def build(self):
|
||||||
# We need this workaround until the toolchains feature
|
cmake = CMake(self)
|
||||||
# to inject stuff like MD/MT
|
cmake.configure()
|
||||||
line_to_replace = 'list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/CMake")'
|
|
||||||
tools.replace_in_file("CMakeLists.txt", line_to_replace,
|
|
||||||
'''{}
|
|
||||||
include("{}/conanbuildinfo.cmake")
|
|
||||||
conan_basic_setup()'''.format(line_to_replace, self.install_folder.replace("\\", "/")))
|
|
||||||
|
|
||||||
cmake = self._configure_cmake()
|
|
||||||
cmake.build()
|
cmake.build()
|
||||||
|
|
||||||
def package(self):
|
def package(self):
|
||||||
self.copy(pattern="LICENSE.txt", dst="licenses")
|
copy(self, "LICENSE.txt", src=str(self.recipe_folder), dst=os.path.join(self.package_folder, "licenses"))
|
||||||
cmake = self._configure_cmake()
|
cmake = CMake(self)
|
||||||
cmake.install()
|
cmake.install()
|
||||||
|
rmdir(self, os.path.join(self.package_folder, "share"))
|
||||||
|
rmdir(self, os.path.join(self.package_folder, "lib", "cmake"))
|
||||||
|
copy(self, "*.cmake", src=os.path.join(self.export_sources_folder, "extras"),
|
||||||
|
dst=os.path.join(self.package_folder, "lib", "cmake", "Catch2"))
|
||||||
|
|
||||||
def package_info(self):
|
def package_info(self):
|
||||||
lib_suffix = "d" if self.settings.build_type == "Debug" else ""
|
lib_suffix = "d" if self.settings.build_type == "Debug" else ""
|
||||||
|
|
||||||
self.cpp_info.names["cmake_find_package"] = "Catch2"
|
self.cpp_info.set_property("cmake_file_name", "Catch2")
|
||||||
self.cpp_info.names["cmake_find_package_multi"] = "Catch2"
|
self.cpp_info.set_property("cmake_target_name", "Catch2::Catch2WithMain")
|
||||||
|
self.cpp_info.set_property("pkg_config_name", "catch2-with-main")
|
||||||
|
|
||||||
# Catch2
|
# Catch2
|
||||||
self.cpp_info.components["catch2base"].names["cmake_find_package"] = "Catch2"
|
self.cpp_info.components["catch2base"].set_property("cmake_file_name", "Catch2::Catch2")
|
||||||
self.cpp_info.components["catch2base"].names["cmake_find_package_multi"] = "Catch2"
|
self.cpp_info.components["catch2base"].set_property("cmake_target_name", "Catch2::Catch2")
|
||||||
self.cpp_info.components["catch2base"].names["pkg_config"] = "Catch2"
|
self.cpp_info.components["catch2base"].set_property("pkg_config_name", "catch2")
|
||||||
self.cpp_info.components["catch2base"].libs = ["Catch2" + lib_suffix]
|
self.cpp_info.components["catch2base"].libs = ["Catch2" + lib_suffix]
|
||||||
self.cpp_info.components["catch2base"].builddirs.append("lib/cmake/Catch2")
|
self.cpp_info.components["catch2base"].builddirs.append("lib/cmake/Catch2")
|
||||||
|
|
||||||
# Catch2WithMain
|
# Catch2WithMain
|
||||||
self.cpp_info.components["catch2main"].names["cmake_find_package"] = "Catch2WithMain"
|
self.cpp_info.components["catch2main"].set_property("cmake_file_name", "Catch2::Catch2WithMain")
|
||||||
self.cpp_info.components["catch2main"].names["cmake_find_package_multi"] = "Catch2WithMain"
|
self.cpp_info.components["catch2main"].set_property("cmake_target_name", "Catch2::Catch2WithMain")
|
||||||
self.cpp_info.components["catch2main"].names["pkg_config"] = "Catch2WithMain"
|
self.cpp_info.components["catch2main"].set_property("pkg_config_name", "catch2-with-main")
|
||||||
self.cpp_info.components["catch2main"].libs = ["Catch2Main" + lib_suffix]
|
self.cpp_info.components["catch2main"].libs = ["Catch2Main" + lib_suffix]
|
||||||
self.cpp_info.components["catch2main"].requires = ["catch2base"]
|
self.cpp_info.components["catch2main"].requires = ["catch2base"]
|
||||||
|
@@ -110,7 +110,7 @@ Expects that an exception is thrown that, when converted to a string, matches th
|
|||||||
|
|
||||||
e.g.
|
e.g.
|
||||||
```cpp
|
```cpp
|
||||||
REQUIRE_THROWS_WITH( openThePodBayDoors(), Contains( "afraid" ) && Contains( "can't do that" ) );
|
REQUIRE_THROWS_WITH( openThePodBayDoors(), ContainsSubstring( "afraid" ) && ContainsSubstring( "can't do that" ) );
|
||||||
REQUIRE_THROWS_WITH( dismantleHal(), "My mind is going" );
|
REQUIRE_THROWS_WITH( dismantleHal(), "My mind is going" );
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
[`CATCH_CONFIG_*` customization options in CMake](#catch_config_-customization-options-in-cmake)<br>
|
[`CATCH_CONFIG_*` customization options in CMake](#catch_config_-customization-options-in-cmake)<br>
|
||||||
[Installing Catch2 from git repository](#installing-catch2-from-git-repository)<br>
|
[Installing Catch2 from git repository](#installing-catch2-from-git-repository)<br>
|
||||||
[Installing Catch2 from vcpkg](#installing-catch2-from-vcpkg)<br>
|
[Installing Catch2 from vcpkg](#installing-catch2-from-vcpkg)<br>
|
||||||
|
[Installing Catch2 from Bazel](#installing-catch2-from-bazel)<br>
|
||||||
|
|
||||||
Because we use CMake to build Catch2, we also provide a couple of
|
Because we use CMake to build Catch2, we also provide a couple of
|
||||||
integration points for our users.
|
integration points for our users.
|
||||||
@@ -384,7 +385,7 @@ install it to the default location, like so:
|
|||||||
```
|
```
|
||||||
$ git clone https://github.com/catchorg/Catch2.git
|
$ git clone https://github.com/catchorg/Catch2.git
|
||||||
$ cd Catch2
|
$ cd Catch2
|
||||||
$ cmake -Bbuild -H. -DBUILD_TESTING=OFF
|
$ cmake -B build -S . -DBUILD_TESTING=OFF
|
||||||
$ sudo cmake --build build/ --target install
|
$ sudo cmake --build build/ --target install
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -408,6 +409,24 @@ cd vcpkg
|
|||||||
The catch2 port in vcpkg is kept up to date by microsoft team members and community contributors.
|
The catch2 port in vcpkg is kept up to date by microsoft team members and community contributors.
|
||||||
If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.
|
If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.
|
||||||
|
|
||||||
|
## Installing Catch2 from Bazel
|
||||||
|
|
||||||
|
Catch2 is now a supported module in the Bazel Central Registry. You only need to add one line to your MODULE.bazel file;
|
||||||
|
please see https://registry.bazel.build/modules/catch2 for the latest supported version.
|
||||||
|
|
||||||
|
You can then add `catch2_main` to each of your C++ test build rules as follows:
|
||||||
|
|
||||||
|
```
|
||||||
|
cc_test(
|
||||||
|
name = "example_test",
|
||||||
|
srcs = ["example_test.cpp"],
|
||||||
|
deps = [
|
||||||
|
":example",
|
||||||
|
"@catch2//:catch2_main",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
[Home](Readme.md#top)
|
[Home](Readme.md#top)
|
||||||
|
@@ -145,7 +145,7 @@ only tests that match the positive filters are included.
|
|||||||
|
|
||||||
You can also match test names with special characters by escaping them
|
You can also match test names with special characters by escaping them
|
||||||
with a backslash (`"\"`), e.g. a test named `"Do A, then B"` is matched
|
with a backslash (`"\"`), e.g. a test named `"Do A, then B"` is matched
|
||||||
by "Do A\, then B" test spec. Backslash also escapes itself.
|
by `"Do A\, then B"` test spec. Backslash also escapes itself.
|
||||||
|
|
||||||
|
|
||||||
### Examples
|
### Examples
|
||||||
@@ -194,7 +194,8 @@ verbose and human-friendly output.
|
|||||||
|
|
||||||
Reporters are also individually configurable. To pass configuration options
|
Reporters are also individually configurable. To pass configuration options
|
||||||
to the reporter, you append `::key=value` to the reporter specification
|
to the reporter, you append `::key=value` to the reporter specification
|
||||||
as many times as you want, e.g. `--reporter xml::out=someFile.xml`.
|
as many times as you want, e.g. `--reporter xml::out=someFile.xml` or
|
||||||
|
`--reporter custom::colour-mode=ansi::Xoption=2`.
|
||||||
|
|
||||||
The keys must either be prefixed by "X", in which case they are not parsed
|
The keys must either be prefixed by "X", in which case they are not parsed
|
||||||
by Catch2 and are only passed down to the reporter, or one of options
|
by Catch2 and are only passed down to the reporter, or one of options
|
||||||
@@ -365,14 +366,14 @@ There are currently two warnings implemented:
|
|||||||
## Reporting timings
|
## Reporting timings
|
||||||
<pre>-d, --durations <yes/no></pre>
|
<pre>-d, --durations <yes/no></pre>
|
||||||
|
|
||||||
When set to ```yes``` Catch will report the duration of each test case, in milliseconds. Note that it does this regardless of whether a test case passes or fails. Note, also, the certain reporters (e.g. Junit) always report test case durations regardless of this option being set or not.
|
When set to ```yes``` Catch will report the duration of each test case, in seconds with millisecond precision. Note that it does this regardless of whether a test case passes or fails. Note, also, the certain reporters (e.g. Junit) always report test case durations regardless of this option being set or not.
|
||||||
|
|
||||||
<pre>-D, --min-duration <value></pre>
|
<pre>-D, --min-duration <value></pre>
|
||||||
|
|
||||||
> `--min-duration` was [introduced](https://github.com/catchorg/Catch2/pull/1910) in Catch2 2.13.0
|
> `--min-duration` was [introduced](https://github.com/catchorg/Catch2/pull/1910) in Catch2 2.13.0
|
||||||
|
|
||||||
When set, Catch will report the duration of each test case that took more
|
When set, Catch will report the duration of each test case that took more
|
||||||
than <value> seconds, in milliseconds. This option is overridden by both
|
than <value> seconds, in seconds with millisecond precision. This option is overridden by both
|
||||||
`-d yes` and `-d no`, so that either all durations are reported, or none
|
`-d yes` and `-d no`, so that either all durations are reported, or none
|
||||||
are.
|
are.
|
||||||
|
|
||||||
|
@@ -107,8 +107,7 @@ cmake -B debug-build -S . -DCMAKE_BUILD_TYPE=Debug --preset all-tests
|
|||||||
cmake --build debug-build
|
cmake --build debug-build
|
||||||
|
|
||||||
# 4. Run the tests using CTest
|
# 4. Run the tests using CTest
|
||||||
cd debug-build
|
ctest -j 4 --output-on-failure -C Debug --test-dir debug-build
|
||||||
ctest -j 4 --output-on-failure -C Debug
|
|
||||||
```
|
```
|
||||||
<sup><a href='/tools/scripts/buildAndTest.sh#L6-L19' title='File snippet `catch2-build-and-test` was extracted from'>snippet source</a> | <a href='#snippet-catch2-build-and-test' title='Navigate to start of snippet `catch2-build-and-test`'>anchor</a></sup>
|
<sup><a href='/tools/scripts/buildAndTest.sh#L6-L19' title='File snippet `catch2-build-and-test` was extracted from'>snippet source</a> | <a href='#snippet-catch2-build-and-test' title='Navigate to start of snippet `catch2-build-and-test`'>anchor</a></sup>
|
||||||
<!-- endSnippet -->
|
<!-- endSnippet -->
|
||||||
|
@@ -35,6 +35,19 @@ being aborted (when using `--abort` or `--abortx`). It is however
|
|||||||
**NOT** invoked for test cases that are [explicitly skipped using the `SKIP`
|
**NOT** invoked for test cases that are [explicitly skipped using the `SKIP`
|
||||||
macro](skipping-passing-failing.md#top).
|
macro](skipping-passing-failing.md#top).
|
||||||
|
|
||||||
|
|
||||||
|
### Non-const function for `TEST_CASE_METHOD`
|
||||||
|
|
||||||
|
> Deprecated in Catch2 vX.Y.Z
|
||||||
|
|
||||||
|
Currently, the member function generated for `TEST_CASE_METHOD` is
|
||||||
|
not `const` qualified. In the future, the generated member function will
|
||||||
|
be `const` qualified, just as `TEST_CASE_PERSISTENT_FIXTURE` does.
|
||||||
|
|
||||||
|
If you are mutating the fixture instance from within the test case, and
|
||||||
|
want to keep doing so in the future, mark the mutated members as `mutable`.
|
||||||
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
[Home](Readme.md#top)
|
[Home](Readme.md#top)
|
||||||
|
@@ -206,12 +206,26 @@ or OO ranges.
|
|||||||
Unlike `std::uniform_int_distribution`, Catch2's generators also support
|
Unlike `std::uniform_int_distribution`, Catch2's generators also support
|
||||||
various single-byte integral types, such as `char` or `bool`.
|
various single-byte integral types, such as `char` or `bool`.
|
||||||
|
|
||||||
Given the same seed, the output from the integral generators is
|
|
||||||
reproducible across different platforms. For floating point generators,
|
#### Reproducibility
|
||||||
we only promise reproducibility on platforms that obey the IEEE 754
|
|
||||||
standard, and where `float` is 4 bytes and `double` is 8 bytes. We provide
|
Given the same seed, the output from the integral generators is fully
|
||||||
no guarantees for `long double`, as the internals of `long double` can
|
reproducible across different platforms.
|
||||||
vary wildly across different platforms.
|
|
||||||
|
For floating point generators, the situation is much more complex.
|
||||||
|
Generally Catch2 only promises reproducibility (or even just correctness!)
|
||||||
|
on platforms that obey the IEEE-754 standard. Furthermore, reproducibility
|
||||||
|
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
|
||||||
|
one targetting SSE2 for floating point math, their results will vary.
|
||||||
|
Similarly, binaries compiled with compiler flags that relax the IEEE-754
|
||||||
|
adherence, e.g. `-ffast-math`, might provide different results than those
|
||||||
|
compiled for strict IEEE-754 adherence.
|
||||||
|
|
||||||
|
Finally, we provide zero guarantees on the reproducibility of generating
|
||||||
|
`long double`s, as the internals of `long double` varies across different
|
||||||
|
platforms.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Generator interface
|
## Generator interface
|
||||||
|
@@ -173,3 +173,19 @@ TEST_CASE("b") {
|
|||||||
|
|
||||||
If you are seeing a problem like this, i.e. weird test paths that trigger only under Clang with `libc++`, or only under very specific version of `libstdc++`, it is very likely you are seeing this. The only known workaround is to use a fixed version of your standard library.
|
If you are seeing a problem like this, i.e. weird test paths that trigger only under Clang with `libc++`, or only under very specific version of `libstdc++`, it is very likely you are seeing this. The only known workaround is to use a fixed version of your standard library.
|
||||||
|
|
||||||
|
|
||||||
|
### Visual Studio 2022 -- can't compile assertion with the spaceship operator
|
||||||
|
|
||||||
|
[The C++ standard requires that `std::foo_ordering` is only comparable with
|
||||||
|
a literal 0](https://eel.is/c++draft/cmp#categories.pre-3). There are
|
||||||
|
multiple strategies a stdlib implementation can take to achieve this, and
|
||||||
|
MSVC's STL has changed the strategy they use between two releases of VS 2022.
|
||||||
|
|
||||||
|
With the new strategy, `REQUIRE((a <=> b) == 0)` no longer compiles under
|
||||||
|
MSVC. Note that Catch2 can compile code using MSVC STL's new strategy,
|
||||||
|
but only when compiled with a C++20 conforming compiler. MSVC is currently
|
||||||
|
not conformant enough, but `clang-cl` will compile the assertion above
|
||||||
|
using MSVC STL without problem.
|
||||||
|
|
||||||
|
This change got in with MSVC v19.37](https://godbolt.org/z/KG9obzdvE).
|
||||||
|
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
- Assertion: [REQUIRE, CHECK](../examples/030-Asn-Require-Check.cpp)
|
- Assertion: [REQUIRE, CHECK](../examples/030-Asn-Require-Check.cpp)
|
||||||
- Fixture: [Sections](../examples/100-Fix-Section.cpp)
|
- Fixture: [Sections](../examples/100-Fix-Section.cpp)
|
||||||
- Fixture: [Class-based fixtures](../examples/110-Fix-ClassFixture.cpp)
|
- Fixture: [Class-based fixtures](../examples/110-Fix-ClassFixture.cpp)
|
||||||
|
- Fixture: [Persistent fixtures](../examples/111-Fix-PersistentFixture.cpp)
|
||||||
- BDD: [SCENARIO, GIVEN, WHEN, THEN](../examples/120-Bdd-ScenarioGivenWhenThen.cpp)
|
- BDD: [SCENARIO, GIVEN, WHEN, THEN](../examples/120-Bdd-ScenarioGivenWhenThen.cpp)
|
||||||
- Listener: [Listeners](../examples/210-Evt-EventListeners.cpp)
|
- Listener: [Listeners](../examples/210-Evt-EventListeners.cpp)
|
||||||
- Configuration: [Provide your own output streams](../examples/231-Cfg-OutputStreams.cpp)
|
- Configuration: [Provide your own output streams](../examples/231-Cfg-OutputStreams.cpp)
|
||||||
|
@@ -114,6 +114,10 @@ Similar to `INFO`, but messages are not limited to their own scope: They are rem
|
|||||||
|
|
||||||
The message is always reported but does not fail the test.
|
The message is always reported but does not fail the test.
|
||||||
|
|
||||||
|
**SUCCEED(** _message expression_ **)**
|
||||||
|
|
||||||
|
The message is reported and the test case succeeds.
|
||||||
|
|
||||||
**FAIL(** _message expression_ **)**
|
**FAIL(** _message expression_ **)**
|
||||||
|
|
||||||
The message is reported and the test case fails.
|
The message is reported and the test case fails.
|
||||||
|
@@ -50,25 +50,43 @@ Both of the string matchers used in the examples above live in the
|
|||||||
`catch_matchers_string.hpp` header, so to compile the code above also
|
`catch_matchers_string.hpp` header, so to compile the code above also
|
||||||
requires `#include <catch2/matchers/catch_matchers_string.hpp>`.
|
requires `#include <catch2/matchers/catch_matchers_string.hpp>`.
|
||||||
|
|
||||||
|
### Combining operators and lifetimes
|
||||||
|
|
||||||
**IMPORTANT**: The combining operators do not take ownership of the
|
**IMPORTANT**: The combining operators do not take ownership of the
|
||||||
matcher objects being combined. This means that if you store combined
|
matcher objects being combined.
|
||||||
matcher object, you have to ensure that the matchers being combined
|
|
||||||
outlive its last use. What this means is that the following code leads
|
|
||||||
to a use-after-free (UAF):
|
|
||||||
|
|
||||||
|
This means that if you store combined matcher object, you have to ensure
|
||||||
|
that the individual matchers being combined outlive the combined matcher.
|
||||||
|
Note that the negation matcher from `!` also counts as combining matcher
|
||||||
|
for this.
|
||||||
|
|
||||||
|
Explained on an example, this is fine
|
||||||
```cpp
|
```cpp
|
||||||
#include <catch2/catch_test_macros.hpp>
|
CHECK_THAT(value, WithinAbs(0, 2e-2) && !WithinULP(0., 1));
|
||||||
#include <catch2/matchers/catch_matchers_string.hpp>
|
|
||||||
|
|
||||||
TEST_CASE("Bugs, bugs, bugs", "[Bug]"){
|
|
||||||
std::string str = "Bugs as a service";
|
|
||||||
|
|
||||||
auto match_expression = Catch::Matchers::EndsWith( "as a service" ) ||
|
|
||||||
(Catch::Matchers::StartsWith( "Big data" ) && !Catch::Matchers::ContainsSubstring( "web scale" ) );
|
|
||||||
REQUIRE_THAT(str, match_expression);
|
|
||||||
}
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
and so is this
|
||||||
|
```cpp
|
||||||
|
auto is_close_to_zero = WithinAbs(0, 2e-2);
|
||||||
|
auto is_zero = WithinULP(0., 1);
|
||||||
|
|
||||||
|
CHECK_THAT(value, is_close_to_zero && !is_zero);
|
||||||
|
```
|
||||||
|
|
||||||
|
but this is not
|
||||||
|
```cpp
|
||||||
|
auto is_close_to_zero = WithinAbs(0, 2e-2);
|
||||||
|
auto is_zero = WithinULP(0., 1);
|
||||||
|
auto is_close_to_but_not_zero = is_close_to_zero && !is_zero;
|
||||||
|
|
||||||
|
CHECK_THAT(a_value, is_close_to_but_not_zero); // UAF
|
||||||
|
```
|
||||||
|
|
||||||
|
because `!is_zero` creates a temporary instance of Negation matcher,
|
||||||
|
which the `is_close_to_but_not_zero` refers to. After the line ends,
|
||||||
|
the temporary is destroyed and the combined `is_close_to_but_not_zero`
|
||||||
|
matcher now refers to non-existent object, so using it causes use-after-free.
|
||||||
|
|
||||||
|
|
||||||
## Built-in matchers
|
## Built-in matchers
|
||||||
|
|
||||||
@@ -192,15 +210,36 @@ The other miscellaneous matcher utility is exception matching.
|
|||||||
|
|
||||||
#### Matching exceptions
|
#### Matching exceptions
|
||||||
|
|
||||||
Catch2 provides a utility macro for asserting that an expression
|
Because exceptions are a bit special, Catch2 has a separate macro for them.
|
||||||
throws exception of specific type, and that the exception has desired
|
|
||||||
properties. The macro is `REQUIRE_THROWS_MATCHES(expr, ExceptionType, Matcher)`.
|
|
||||||
|
The basic form is
|
||||||
|
|
||||||
|
```
|
||||||
|
REQUIRE_THROWS_MATCHES(expr, ExceptionType, Matcher)
|
||||||
|
```
|
||||||
|
|
||||||
|
and it checks that the `expr` throws an exception, that exception is derived
|
||||||
|
from the `ExceptionType` type, and then `Matcher::match` is called on
|
||||||
|
the caught exception.
|
||||||
|
|
||||||
> `REQUIRE_THROWS_MATCHES` macro lives in `catch2/matchers/catch_matchers.hpp`
|
> `REQUIRE_THROWS_MATCHES` macro lives in `catch2/matchers/catch_matchers.hpp`
|
||||||
|
|
||||||
|
For one-off checks you can use the `Predicate` matcher above, e.g.
|
||||||
|
|
||||||
Catch2 currently provides two matchers for exceptions.
|
```cpp
|
||||||
These are:
|
REQUIRE_THROWS_MATCHES(parse(...),
|
||||||
|
parse_error,
|
||||||
|
Predicate<parse_error>([] (parse_error const& err) -> bool { return err.line() == 1; })
|
||||||
|
);
|
||||||
|
```
|
||||||
|
|
||||||
|
but if you intend to thoroughly test your error reporting, I recommend
|
||||||
|
defining a specialized matcher.
|
||||||
|
|
||||||
|
|
||||||
|
Catch2 also provides 2 built-in matchers for checking the error message
|
||||||
|
inside an exception (it must be derived from `std::exception`):
|
||||||
* `Message(std::string message)`.
|
* `Message(std::string message)`.
|
||||||
* `MessageMatches(Matcher matcher)`.
|
* `MessageMatches(Matcher matcher)`.
|
||||||
|
|
||||||
@@ -218,10 +257,7 @@ REQUIRE_THROWS_MATCHES(throwsDerivedException(), DerivedException, Message("De
|
|||||||
REQUIRE_THROWS_MATCHES(throwsDerivedException(), DerivedException, MessageMatches(StartsWith("DerivedException")));
|
REQUIRE_THROWS_MATCHES(throwsDerivedException(), DerivedException, MessageMatches(StartsWith("DerivedException")));
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that `DerivedException` in the example above has to derive from
|
> the exception message matchers live in `catch2/matchers/catch_matchers_exception.hpp`
|
||||||
`std::exception` for the example to work.
|
|
||||||
|
|
||||||
> the exception message matcher lives in `catch2/matchers/catch_matchers_exception.hpp`
|
|
||||||
|
|
||||||
|
|
||||||
### Generic range Matchers
|
### Generic range Matchers
|
||||||
|
@@ -93,30 +93,6 @@ TEST_CASE("STATIC_CHECK showcase", "[traits]") {
|
|||||||
|
|
||||||
## Test case related macros
|
## Test case related macros
|
||||||
|
|
||||||
* `METHOD_AS_TEST_CASE`
|
|
||||||
|
|
||||||
`METHOD_AS_TEST_CASE( member-function-pointer, description )` lets you
|
|
||||||
register a member function of a class as a Catch2 test case. The class
|
|
||||||
will be separately instantiated for each method registered in this way.
|
|
||||||
|
|
||||||
```cpp
|
|
||||||
class TestClass {
|
|
||||||
std::string s;
|
|
||||||
|
|
||||||
public:
|
|
||||||
TestClass()
|
|
||||||
:s( "hello" )
|
|
||||||
{}
|
|
||||||
|
|
||||||
void testCase() {
|
|
||||||
REQUIRE( s == "hello" );
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
METHOD_AS_TEST_CASE( TestClass::testCase, "Use class's method as a test case", "[class]" )
|
|
||||||
```
|
|
||||||
|
|
||||||
* `REGISTER_TEST_CASE`
|
* `REGISTER_TEST_CASE`
|
||||||
|
|
||||||
`REGISTER_TEST_CASE( function, description )` let's you register
|
`REGISTER_TEST_CASE( function, description )` let's you register
|
||||||
|
@@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
# Release notes
|
# Release notes
|
||||||
**Contents**<br>
|
**Contents**<br>
|
||||||
|
[3.7.0](#370)<br>
|
||||||
|
[3.6.0](#360)<br>
|
||||||
|
[3.5.4](#354)<br>
|
||||||
|
[3.5.3](#353)<br>
|
||||||
|
[3.5.2](#352)<br>
|
||||||
|
[3.5.1](#351)<br>
|
||||||
[3.5.0](#350)<br>
|
[3.5.0](#350)<br>
|
||||||
[3.4.0](#340)<br>
|
[3.4.0](#340)<br>
|
||||||
[3.3.2](#332)<br>
|
[3.3.2](#332)<br>
|
||||||
@@ -58,6 +64,117 @@
|
|||||||
[Even Older versions](#even-older-versions)<br>
|
[Even Older versions](#even-older-versions)<br>
|
||||||
|
|
||||||
|
|
||||||
|
## 3.7.0
|
||||||
|
|
||||||
|
### Improvements
|
||||||
|
* Slightly improved compile times of benchmarks
|
||||||
|
* Made the resolution estimation in benchmarks slightly more precise
|
||||||
|
* Added new test case macro, `TEST_CASE_PERSISTENT_FIXTURE` (#2885, #1602)
|
||||||
|
* Unlike `TEST_CASE_METHOD`, the same underlying instance is used for all partial runs of that test case
|
||||||
|
* **MASSIVELY** improved performance of the JUnit reporter when handling successful assertions (#2897)
|
||||||
|
* For 1 test case and 10M assertions, the new reporter runs 3x faster and uses up only 8 MB of memory, while the old one needs 7 GB of memory.
|
||||||
|
* Reworked how output redirects works.
|
||||||
|
* Combining a reporter writing to stdout with capturing reporter no longer leads to the capturing reporter seeing all of the other reporter's output.
|
||||||
|
* The file based redirect no longer opens up a new temporary file for each partial test case run, so it will not run out of temporary files when running many tests in single process.
|
||||||
|
|
||||||
|
### Miscellaneous
|
||||||
|
* Better documentation for matchers on thrown exceptions (`REQUIRE_THROWS_MATCHES`)
|
||||||
|
* Improved `catch_discover_tests`'s handling of environment paths (#2878)
|
||||||
|
* It won't reorder paths in `DL_PATHS` or `DYLD_FRAMEWORK_PATHS` args
|
||||||
|
* It won't overwrite the environment paths for test discovery
|
||||||
|
|
||||||
|
|
||||||
|
## 3.6.0
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
* Fixed Windows ARM64 build by fixing the preprocessor condition guarding use `_umul128` intrinsic.
|
||||||
|
* Fixed Windows ARM64EC build by removing intrinsic pragma it does not understand. (#2858)
|
||||||
|
* Why doesn't the x64-emulation build mode understand x64 pragmas? Don't ask me, ask the MSVC guys.
|
||||||
|
* Fixed the JUnit reporter sometimes crashing when reporting a fatal error. (#1210, #2855)
|
||||||
|
* The binary will still exit, but through the original error, rather than secondary error inside the reporter.
|
||||||
|
* The underlying fix applies to all reporters, not just the JUnit one, but only JUnit was currently causing troubles.
|
||||||
|
|
||||||
|
### Improvements
|
||||||
|
* Disable `-Wnon-virtual-dtor` in Decomposer and Matchers (#2854)
|
||||||
|
* `precision` in floating point stringmakers defaults to `max_digits10`.
|
||||||
|
* This means that floating point values will be printed with enough precision to disambiguate any two floats.
|
||||||
|
* Column wrapping ignores ansi colour codes when calculating string width (#2833, #2849)
|
||||||
|
* This makes the output much more readable when the provided messages contain colour codes.
|
||||||
|
|
||||||
|
### Miscellaneous
|
||||||
|
* Conan support improvements
|
||||||
|
* `compatibility_cppstr` is set to False. (#2860)
|
||||||
|
* This means that Conan won't let you mix library and project with different C++ standard settings.
|
||||||
|
* The implementation library CMake target name through Conan is properly set to `Catch2::Catch2` (#2861)
|
||||||
|
* `SelfTest` target can be built through Bazel (#2857)
|
||||||
|
|
||||||
|
|
||||||
|
## 3.5.4
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
* Fixed potential compilation error when asked to generate random integers whose type did not match `std::(u)int*_t`.
|
||||||
|
* This manifested itself when generating random `size_t`s on MacOS
|
||||||
|
* Added missing outlined destructor causing `Wdelete-incomplete` when compiling against libstdc++ in C++23 mode (#2852)
|
||||||
|
* Fixed regression where decomposing assertion with const instance of `std::foo_ordering` would not compile
|
||||||
|
|
||||||
|
### Improvements
|
||||||
|
* Reintroduced support for GCC 5 and 6 (#2836)
|
||||||
|
* 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)
|
||||||
|
* `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.
|
||||||
|
* Improved performance of generating 64bit random integers by 20+%
|
||||||
|
|
||||||
|
### Miscellaneous
|
||||||
|
* Significantly improved Conan in-tree recipe (#2831)
|
||||||
|
* `DL_PATHS` in `catch_discover_tests` now supports multiple arguments (#2852, #2736)
|
||||||
|
* Fixed preprocessor logic for checking whether we expect reproducible floating point results in tests.
|
||||||
|
* Improved the floating point tests structure to avoid `Wunused` when the reproducibility tests are disabled (#2845)
|
||||||
|
|
||||||
|
|
||||||
|
## 3.5.3
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
* Fixed OOB access when computing filename tag (from the `-#` flag) for file without extension (#2798)
|
||||||
|
* Fixed the linking against `log` on Android to be `PRIVATE` (#2815)
|
||||||
|
* Fixed `Wuseless-cast` in benchmarking internals (#2823)
|
||||||
|
|
||||||
|
### Improvements
|
||||||
|
* Restored compatibility with VS2017 (#2792, #2822)
|
||||||
|
* The baseline for Catch2 is still C++14 with some reasonable workarounds for specific compilers, so if VS2017 starts acting up again, the support will be dropped again.
|
||||||
|
* Suppressed clang-tidy's `bugprone-chained-comparison` in assertions (#2801)
|
||||||
|
* Improved the static analysis mode to evaluate arguments to `TEST_CASE` and `SECTION` (#2817)
|
||||||
|
* Clang-tidy should no longer warn about runtime arguments to these macros being unused in static analysis mode.
|
||||||
|
* Clang-tidy can warn on issues involved arguments to these macros.
|
||||||
|
* Added support for literal-zero detectors based on `consteval` constructors
|
||||||
|
* This is required for compiling `REQUIRE((a <=> b) == 0)` against MSVC's stdlib.
|
||||||
|
* Sadly, MSVC still cannot compile this assertion as it does not implement C++20 correctly.
|
||||||
|
* You can use `clang-cl` with MSVC's stdlib instead.
|
||||||
|
* If for some godforsaken reasons you want to understand this better, read the two relevant commits: [`dc51386b9fd61f99ea9c660d01867e6ad489b403`](https://github.com/catchorg/Catch2/commit/dc51386b9fd61f99ea9c660d01867e6ad489b403), and [`0787132fc82a75e3fb255aa9484ca1dc1eff2a30`](https://github.com/catchorg/Catch2/commit/0787132fc82a75e3fb255aa9484ca1dc1eff2a30).
|
||||||
|
|
||||||
|
### Miscellaneous
|
||||||
|
* Disabled tests for FP random generator reproducibility on non-SSE2 x86 targets (#2796)
|
||||||
|
* Modified the in-tree Conan recipe to support Conan 2 (#2805)
|
||||||
|
|
||||||
|
|
||||||
|
## 3.5.2
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
* Fixed `-Wsubobject-linkage` in the Console reporter (#2794)
|
||||||
|
* Fixed adding new CLI Options to lvalue parser using `|` (#2787)
|
||||||
|
|
||||||
|
|
||||||
|
## 3.5.1
|
||||||
|
|
||||||
|
### Improvements
|
||||||
|
* Significantly improved performance of the CLI parsing.
|
||||||
|
* This includes the cost of preparing the CLI parser, so Catch2's binaries start much faster.
|
||||||
|
|
||||||
|
### Miscellaneous
|
||||||
|
* Added support for Bazel modules (#2781)
|
||||||
|
* Added CMake option to disable the build reproducibility settings (#2785)
|
||||||
|
* Added `log` library linking to the Meson build (#2784)
|
||||||
|
|
||||||
|
|
||||||
## 3.5.0
|
## 3.5.0
|
||||||
|
|
||||||
@@ -75,7 +192,7 @@
|
|||||||
* Catch2 should automatically disable getenv when compiled for XBox.
|
* Catch2 should automatically disable getenv when compiled for XBox.
|
||||||
* Compiling Catch2 with exceptions disabled no longer triggers `Wunused-function` (#2726)
|
* Compiling Catch2 with exceptions disabled no longer triggers `Wunused-function` (#2726)
|
||||||
* **`random` Generators for integral types are now reproducible across different platforms**
|
* **`random` Generators for integral types are now reproducible across different platforms**
|
||||||
* Unlike `<rando>`, Catch2's generators also support 1 byte integral types (`char`, `bool`, ...)
|
* Unlike `<random>`, Catch2's generators also support 1 byte integral types (`char`, `bool`, ...)
|
||||||
* **`random` Generators for `float` and `double` are now reproducible across different platforms**
|
* **`random` Generators for `float` and `double` are now reproducible across different platforms**
|
||||||
* `long double` varies across different platforms too much to be reproducible
|
* `long double` varies across different platforms too much to be reproducible
|
||||||
* This guarantee applies only to platforms with IEEE 754 floats.
|
* This guarantee applies only to platforms with IEEE 754 floats.
|
||||||
|
@@ -5,7 +5,7 @@ Reporters are a customization point for most of Catch2's output, e.g.
|
|||||||
formatting and writing out [assertions (whether passing or failing),
|
formatting and writing out [assertions (whether passing or failing),
|
||||||
sections, test cases, benchmarks, and so on](reporter-events.md#top).
|
sections, test cases, benchmarks, and so on](reporter-events.md#top).
|
||||||
|
|
||||||
Catch2 comes with a bunch of reporters by default (currently 8), and
|
Catch2 comes with a bunch of reporters by default (currently 9), and
|
||||||
you can also write your own reporter. Because multiple reporters can
|
you can also write your own reporter. Because multiple reporters can
|
||||||
be active at the same time, your own reporters do not even have to handle
|
be active at the same time, your own reporters do not even have to handle
|
||||||
all reporter event, just the ones you are interested in, e.g. benchmarks.
|
all reporter event, just the ones you are interested in, e.g. benchmarks.
|
||||||
|
@@ -48,7 +48,7 @@ For more detail on command line selection see [the command line docs](command-li
|
|||||||
Tag names are not case sensitive and can contain any ASCII characters.
|
Tag names are not case sensitive and can contain any ASCII characters.
|
||||||
This means that tags `[tag with spaces]` and `[I said "good day"]`
|
This means that tags `[tag with spaces]` and `[I said "good day"]`
|
||||||
are both allowed tags and can be filtered on. However, escapes are not
|
are both allowed tags and can be filtered on. However, escapes are not
|
||||||
supported however and `[\]]` is not a valid tag.
|
supported and `[\]]` is not a valid tag.
|
||||||
|
|
||||||
The same tag can be specified multiple times for a single test case,
|
The same tag can be specified multiple times for a single test case,
|
||||||
but only one of the instances of identical tags will be kept. Which one
|
but only one of the instances of identical tags will be kept. Which one
|
||||||
|
@@ -1,9 +1,30 @@
|
|||||||
<a id="top"></a>
|
<a id="top"></a>
|
||||||
# Test fixtures
|
# Test fixtures
|
||||||
|
|
||||||
## Defining test fixtures
|
**Contents**<br>
|
||||||
|
[Non-Templated test fixtures](#non-templated-test-fixtures)<br>
|
||||||
|
[Templated test fixtures](#templated-test-fixtures)<br>
|
||||||
|
[Signature-based parameterised test fixtures](#signature-based-parametrised-test-fixtures)<br>
|
||||||
|
[Template fixtures with types specified in template type lists](#template-fixtures-with-types-specified-in-template-type-lists)<br>
|
||||||
|
|
||||||
Although Catch allows you to group tests together as [sections within a test case](test-cases-and-sections.md), it can still be convenient, sometimes, to group them using a more traditional test fixture. Catch fully supports this too. You define the test fixture as a simple structure:
|
## Non-Templated test fixtures
|
||||||
|
|
||||||
|
Although Catch2 allows you to group tests together as
|
||||||
|
[sections within a test case](test-cases-and-sections.md), it can still
|
||||||
|
be convenient, sometimes, to group them using a more traditional test.
|
||||||
|
Catch2 fully supports this too with 3 different macros for
|
||||||
|
non-templated test fixtures. They are:
|
||||||
|
|
||||||
|
| Macro | Description |
|
||||||
|
|----------|-------------|
|
||||||
|
|1. `TEST_CASE_METHOD(className, ...)`| Creates a uniquely named class which inherits from the class specified by `className`. The test function will be a member of this derived class. An instance of the derived class will be created for every partial run of the test case. |
|
||||||
|
|2. `METHOD_AS_TEST_CASE(member-function, ...)`| Uses `member-function` as the test function. An instance of the class will be created for each partial run of the test case. |
|
||||||
|
|3. `TEST_CASE_PERSISTENT_FIXTURE(className, ...)`| Creates a uniquely named class which inherits from the class specified by `className`. The test function will be a member of this derived class. An instance of the derived class will be created at the start of the test run. That instance will be destroyed once the entire test case has ended. |
|
||||||
|
|
||||||
|
### 1. `TEST_CASE_METHOD`
|
||||||
|
|
||||||
|
|
||||||
|
You define a `TEST_CASE_METHOD` test fixture as a simple structure:
|
||||||
|
|
||||||
```c++
|
```c++
|
||||||
class UniqueTestsFixture {
|
class UniqueTestsFixture {
|
||||||
@@ -30,8 +51,116 @@ class UniqueTestsFixture {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
The two test cases here will create uniquely-named derived classes of UniqueTestsFixture and thus can access the `getID()` protected method and `conn` member variables. This ensures that both the test cases are able to create a DBConnection using the same method (DRY principle) and that any ID's created are unique such that the order that tests are executed does not matter.
|
The two test cases here will create uniquely-named derived classes of
|
||||||
|
UniqueTestsFixture and thus can access the `getID()` protected method
|
||||||
|
and `conn` member variables. This ensures that both the test cases
|
||||||
|
are able to create a DBConnection using the same method
|
||||||
|
(DRY principle) and that any ID's created are unique such that the
|
||||||
|
order that tests are executed does not matter.
|
||||||
|
|
||||||
|
### 2. `METHOD_AS_TEST_CASE`
|
||||||
|
|
||||||
|
`METHOD_AS_TEST_CASE` lets you register a member function of a class
|
||||||
|
as a Catch2 test case. The class will be separately instantiated
|
||||||
|
for each method registered in this way.
|
||||||
|
|
||||||
|
```cpp
|
||||||
|
class TestClass {
|
||||||
|
std::string s;
|
||||||
|
|
||||||
|
public:
|
||||||
|
TestClass()
|
||||||
|
:s( "hello" )
|
||||||
|
{}
|
||||||
|
|
||||||
|
void testCase() {
|
||||||
|
REQUIRE( s == "hello" );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
METHOD_AS_TEST_CASE( TestClass::testCase, "Use class's method as a test case", "[class]" )
|
||||||
|
```
|
||||||
|
|
||||||
|
This type of fixture is similar to [TEST_CASE_METHOD](#1-test_case_method) except in this
|
||||||
|
case it will directly use the provided class to create an object rather than a derived
|
||||||
|
class.
|
||||||
|
|
||||||
|
### 3. `TEST_CASE_PERSISTENT_FIXTURE`
|
||||||
|
|
||||||
|
> [Introduced](https://github.com/catchorg/Catch2/pull/2885) in Catch2 3.7.0
|
||||||
|
|
||||||
|
`TEST_CASE_PERSISTENT_FIXTURE` behaves in the same way as
|
||||||
|
[TEST_CASE_METHOD](#1-test_case_method) except that there will only be
|
||||||
|
one instance created throughout the entire run of a test case. To
|
||||||
|
demonstrate this have a look at the following example:
|
||||||
|
|
||||||
|
```cpp
|
||||||
|
class ClassWithExpensiveSetup {
|
||||||
|
public:
|
||||||
|
ClassWithExpensiveSetup() {
|
||||||
|
// expensive construction
|
||||||
|
std::this_thread::sleep_for( std::chrono::seconds( 2 ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
~ClassWithExpensiveSetup() noexcept {
|
||||||
|
// expensive destruction
|
||||||
|
std::this_thread::sleep_for( std::chrono::seconds( 1 ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
int getInt() const { return 42; }
|
||||||
|
};
|
||||||
|
|
||||||
|
struct MyFixture {
|
||||||
|
mutable int myInt = 0;
|
||||||
|
ClassWithExpensiveSetup expensive;
|
||||||
|
};
|
||||||
|
|
||||||
|
TEST_CASE_PERSISTENT_FIXTURE( MyFixture, "Tests with MyFixture" ) {
|
||||||
|
|
||||||
|
const int val = myInt++;
|
||||||
|
|
||||||
|
SECTION( "First partial run" ) {
|
||||||
|
const auto otherValue = expensive.getInt();
|
||||||
|
REQUIRE( val == 0 );
|
||||||
|
REQUIRE( otherValue == 42 );
|
||||||
|
}
|
||||||
|
|
||||||
|
SECTION( "Second partial run" ) { REQUIRE( val == 1 ); }
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
This example demonstates two possible use-cases of this fixture type:
|
||||||
|
1. Improve test run times by reducing the amount of expensive and
|
||||||
|
redundant setup and tear-down required.
|
||||||
|
2. Reusing results from the previous partial run, in the current
|
||||||
|
partial run.
|
||||||
|
|
||||||
|
This test case will be executed twice as there are two leaf sections.
|
||||||
|
On the first run `val` will be `0` and on the second run `val` will be
|
||||||
|
`1`. This demonstrates that we were able to use the results of the
|
||||||
|
previous partial run in subsequent partial runs.
|
||||||
|
|
||||||
|
Additionally, we are simulating an expensive object using
|
||||||
|
`std::this_thread::sleep_for`, but real world use-cases could be:
|
||||||
|
1. Creating a D3D12/Vulkan device
|
||||||
|
2. Connecting to a database
|
||||||
|
3. Loading a file.
|
||||||
|
|
||||||
|
The fixture object (`MyFixture`) will be constructed just before the
|
||||||
|
test case begins, and it will be destroyed just after the test case
|
||||||
|
ends. Therefore, this expensive object will only be created and
|
||||||
|
destroyed once during the execution of this test case. If we had used
|
||||||
|
`TEST_CASE_METHOD`, `MyFixture` would have been created and destroyed
|
||||||
|
twice during the execution of this test case.
|
||||||
|
|
||||||
|
NOTE: The member function which runs the test case is `const`. Therefore
|
||||||
|
if you want to mutate any member of the fixture it must be marked as
|
||||||
|
`mutable` as shown in this example. This is to make it clear that
|
||||||
|
the initial state of the fixture is intended to mutate during the
|
||||||
|
execution of the test case.
|
||||||
|
|
||||||
|
## Templated test fixtures
|
||||||
|
|
||||||
Catch2 also provides `TEMPLATE_TEST_CASE_METHOD` and
|
Catch2 also provides `TEMPLATE_TEST_CASE_METHOD` and
|
||||||
`TEMPLATE_PRODUCT_TEST_CASE_METHOD` that can be used together
|
`TEMPLATE_PRODUCT_TEST_CASE_METHOD` that can be used together
|
||||||
@@ -93,7 +222,7 @@ _While there is an upper limit on the number of types you can specify
|
|||||||
in single `TEMPLATE_TEST_CASE_METHOD` or `TEMPLATE_PRODUCT_TEST_CASE_METHOD`,
|
in single `TEMPLATE_TEST_CASE_METHOD` or `TEMPLATE_PRODUCT_TEST_CASE_METHOD`,
|
||||||
the limit is very high and should not be encountered in practice._
|
the limit is very high and should not be encountered in practice._
|
||||||
|
|
||||||
## Signature-based parametrised test fixtures
|
## Signature-based parameterised test fixtures
|
||||||
|
|
||||||
> [Introduced](https://github.com/catchorg/Catch2/issues/1609) in Catch2 2.8.0.
|
> [Introduced](https://github.com/catchorg/Catch2/issues/1609) in Catch2 2.8.0.
|
||||||
|
|
||||||
|
@@ -16,7 +16,7 @@ Ideally you should be using Catch2 through its [CMake integration](cmake-integra
|
|||||||
Catch2 also provides pkg-config files and two file (header + cpp)
|
Catch2 also provides pkg-config files and two file (header + cpp)
|
||||||
distribution, but this documentation will assume you are using CMake. If
|
distribution, but this documentation will assume you are using CMake. If
|
||||||
you are using the two file distribution instead, remember to replace
|
you are using the two file distribution instead, remember to replace
|
||||||
the included header with `catch_amalgamated.hpp`.
|
the included header with `catch_amalgamated.hpp` ([step by step instructions](migrate-v2-to-v3.md#how-to-migrate-projects-from-v2-to-v3)).
|
||||||
|
|
||||||
|
|
||||||
## Writing tests
|
## Writing tests
|
||||||
|
74
examples/111-Fix-PersistentFixture.cpp
Normal file
74
examples/111-Fix-PersistentFixture.cpp
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
|
||||||
|
// Copyright Catch2 Authors
|
||||||
|
// Distributed under the Boost Software License, Version 1.0.
|
||||||
|
// (See accompanying file LICENSE.txt or copy at
|
||||||
|
// https://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
|
// SPDX-License-Identifier: BSL-1.0
|
||||||
|
|
||||||
|
// Fixture.cpp
|
||||||
|
|
||||||
|
// Catch2 has three ways to express fixtures:
|
||||||
|
// - Sections
|
||||||
|
// - Traditional class-based fixtures that are created and destroyed on every
|
||||||
|
// partial run
|
||||||
|
// - Traditional class-based fixtures that are created at the start of a test
|
||||||
|
// case and destroyed at the end of a test case (this file)
|
||||||
|
|
||||||
|
// main() provided by linkage to Catch2WithMain
|
||||||
|
|
||||||
|
#include <catch2/catch_test_macros.hpp>
|
||||||
|
|
||||||
|
#include <thread>
|
||||||
|
|
||||||
|
class ClassWithExpensiveSetup {
|
||||||
|
public:
|
||||||
|
ClassWithExpensiveSetup() {
|
||||||
|
// Imagine some really expensive set up here.
|
||||||
|
// e.g.
|
||||||
|
// setting up a D3D12/Vulkan Device,
|
||||||
|
// connecting to a database,
|
||||||
|
// loading a file
|
||||||
|
// etc etc etc
|
||||||
|
std::this_thread::sleep_for( std::chrono::seconds( 2 ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
~ClassWithExpensiveSetup() noexcept {
|
||||||
|
// We can do any clean up of the expensive class in the destructor
|
||||||
|
// e.g.
|
||||||
|
// destroy D3D12/Vulkan Device,
|
||||||
|
// disconnecting from a database,
|
||||||
|
// release file handle
|
||||||
|
// etc etc etc
|
||||||
|
std::this_thread::sleep_for( std::chrono::seconds( 1 ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
int getInt() const { return 42; }
|
||||||
|
};
|
||||||
|
|
||||||
|
struct MyFixture {
|
||||||
|
|
||||||
|
// The test case member function is const.
|
||||||
|
// Therefore we need to mark any member of the fixture
|
||||||
|
// that needs to mutate as mutable.
|
||||||
|
mutable int myInt = 0;
|
||||||
|
ClassWithExpensiveSetup expensive;
|
||||||
|
};
|
||||||
|
|
||||||
|
// Only one object of type MyFixture will be instantiated for the run
|
||||||
|
// of this test case even though there are two leaf sections.
|
||||||
|
// This is useful if your test case requires an object that is
|
||||||
|
// expensive to create and could be reused for each partial run of the
|
||||||
|
// test case.
|
||||||
|
TEST_CASE_PERSISTENT_FIXTURE( MyFixture, "Tests with MyFixture" ) {
|
||||||
|
|
||||||
|
const int val = myInt++;
|
||||||
|
|
||||||
|
SECTION( "First partial run" ) {
|
||||||
|
const auto otherValue = expensive.getInt();
|
||||||
|
REQUIRE( val == 0 );
|
||||||
|
REQUIRE( otherValue == 42 );
|
||||||
|
}
|
||||||
|
|
||||||
|
SECTION( "Second partial run" ) { REQUIRE( val == 1 ); }
|
||||||
|
}
|
@@ -385,8 +385,7 @@ struct MyListener : Catch::EventListenerBase {
|
|||||||
CATCH_REGISTER_LISTENER( MyListener )
|
CATCH_REGISTER_LISTENER( MyListener )
|
||||||
|
|
||||||
// Get rid of Wweak-tables
|
// Get rid of Wweak-tables
|
||||||
MyListener::~MyListener() {}
|
MyListener::~MyListener() = default;
|
||||||
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------
|
// -----------------------------------------------------------------------
|
||||||
// 3. Test cases:
|
// 3. Test cases:
|
||||||
|
@@ -22,7 +22,7 @@ class out_buff : public std::stringbuf {
|
|||||||
std::FILE* m_stream;
|
std::FILE* m_stream;
|
||||||
public:
|
public:
|
||||||
out_buff(std::FILE* stream):m_stream(stream) {}
|
out_buff(std::FILE* stream):m_stream(stream) {}
|
||||||
~out_buff();
|
~out_buff() override;
|
||||||
int sync() override {
|
int sync() override {
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
for (unsigned char c : str()) {
|
for (unsigned char c : str()) {
|
||||||
|
41
examples/232-Cfg-CustomMain.cpp
Normal file
41
examples/232-Cfg-CustomMain.cpp
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
|
||||||
|
// Copyright Catch2 Authors
|
||||||
|
// Distributed under the Boost Software License, Version 1.0.
|
||||||
|
// (See accompanying file LICENSE.txt or copy at
|
||||||
|
// https://www.boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
|
// SPDX-License-Identifier: BSL-1.0
|
||||||
|
|
||||||
|
// 232-Cfg-CustomMain.cpp
|
||||||
|
// Show how to use custom main and add a custom option to the CLI parser
|
||||||
|
|
||||||
|
#include <catch2/catch_session.hpp>
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
int main(int argc, char** argv) {
|
||||||
|
Catch::Session session; // There must be exactly one instance
|
||||||
|
|
||||||
|
int height = 0; // Some user variable you want to be able to set
|
||||||
|
|
||||||
|
// Build a new parser on top of Catch2's
|
||||||
|
using namespace Catch::Clara;
|
||||||
|
auto cli
|
||||||
|
= session.cli() // Get Catch2's command line parser
|
||||||
|
| Opt( height, "height" ) // bind variable to a new option, with a hint string
|
||||||
|
["--height"] // the option names it will respond to
|
||||||
|
("how high?"); // description string for the help output
|
||||||
|
|
||||||
|
// Now pass the new composite back to Catch2 so it uses that
|
||||||
|
session.cli( cli );
|
||||||
|
|
||||||
|
// Let Catch2 (using Clara) parse the command line
|
||||||
|
int returnCode = session.applyCommandLine( argc, argv );
|
||||||
|
if( returnCode != 0 ) // Indicates a command line error
|
||||||
|
return returnCode;
|
||||||
|
|
||||||
|
// if set on the command line then 'height' is now set at this point
|
||||||
|
std::cout << "height: " << height << '\n';
|
||||||
|
|
||||||
|
return session.run();
|
||||||
|
}
|
@@ -21,7 +21,7 @@
|
|||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
// This class shows how to implement a simple generator for Catch tests
|
// This class shows how to implement a simple generator for Catch tests
|
||||||
class RandomIntGenerator : public Catch::Generators::IGenerator<int> {
|
class RandomIntGenerator final : public Catch::Generators::IGenerator<int> {
|
||||||
std::minstd_rand m_rand;
|
std::minstd_rand m_rand;
|
||||||
std::uniform_int_distribution<> m_dist;
|
std::uniform_int_distribution<> m_dist;
|
||||||
int current_number;
|
int current_number;
|
||||||
|
@@ -24,12 +24,12 @@ namespace {
|
|||||||
// Returns a line from a stream. You could have it e.g. read lines from
|
// Returns a line from a stream. You could have it e.g. read lines from
|
||||||
// a file, but to avoid problems with paths in examples, we will use
|
// a file, but to avoid problems with paths in examples, we will use
|
||||||
// a fixed stringstream.
|
// a fixed stringstream.
|
||||||
class LineGenerator : public Catch::Generators::IGenerator<std::string> {
|
class LineGenerator final : public Catch::Generators::IGenerator<std::string> {
|
||||||
std::string m_line;
|
std::string m_line;
|
||||||
std::stringstream m_stream;
|
std::stringstream m_stream;
|
||||||
public:
|
public:
|
||||||
LineGenerator() {
|
explicit LineGenerator( std::string const& lines ) {
|
||||||
m_stream.str("1\n2\n3\n4\n");
|
m_stream.str( lines );
|
||||||
if (!next()) {
|
if (!next()) {
|
||||||
Catch::Generators::Detail::throw_generator_exception("Couldn't read a single line");
|
Catch::Generators::Detail::throw_generator_exception("Couldn't read a single line");
|
||||||
}
|
}
|
||||||
@@ -49,18 +49,19 @@ std::string const& LineGenerator::get() const {
|
|||||||
// This helper function provides a nicer UX when instantiating the generator
|
// This helper function provides a nicer UX when instantiating the generator
|
||||||
// Notice that it returns an instance of GeneratorWrapper<std::string>, which
|
// Notice that it returns an instance of GeneratorWrapper<std::string>, which
|
||||||
// is a value-wrapper around std::unique_ptr<IGenerator<std::string>>.
|
// is a value-wrapper around std::unique_ptr<IGenerator<std::string>>.
|
||||||
Catch::Generators::GeneratorWrapper<std::string> lines(std::string /* ignored for example */) {
|
Catch::Generators::GeneratorWrapper<std::string>
|
||||||
|
lines( std::string const& lines ) {
|
||||||
return Catch::Generators::GeneratorWrapper<std::string>(
|
return Catch::Generators::GeneratorWrapper<std::string>(
|
||||||
new LineGenerator()
|
new LineGenerator( lines ) );
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // end anonymous namespace
|
} // end anonymous namespace
|
||||||
|
|
||||||
|
|
||||||
TEST_CASE("filter can convert types inside the generator expression", "[example][generator]") {
|
TEST_CASE("filter can convert types inside the generator expression", "[example][generator]") {
|
||||||
auto num = GENERATE(map<int>([](std::string const& line) { return std::stoi(line); },
|
auto num = GENERATE(
|
||||||
lines("fake-file")));
|
map<int>( []( std::string const& line ) { return std::stoi( line ); },
|
||||||
|
lines( "1\n2\n3\n4\n" ) ) );
|
||||||
|
|
||||||
REQUIRE(num > 0);
|
REQUIRE(num > 0);
|
||||||
}
|
}
|
||||||
|
@@ -28,8 +28,10 @@ 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
|
||||||
|
111-Fix-PersistentFixture.cpp
|
||||||
120-Bdd-ScenarioGivenWhenThen.cpp
|
120-Bdd-ScenarioGivenWhenThen.cpp
|
||||||
210-Evt-EventListeners.cpp
|
210-Evt-EventListeners.cpp
|
||||||
|
232-Cfg-CustomMain.cpp
|
||||||
300-Gen-OwnGenerator.cpp
|
300-Gen-OwnGenerator.cpp
|
||||||
301-Gen-MapTypeConversion.cpp
|
301-Gen-MapTypeConversion.cpp
|
||||||
302-Gen-Table.cpp
|
302-Gen-Table.cpp
|
||||||
@@ -42,8 +44,7 @@ set( TARGETS_IDIOMATIC_EXAMPLES ${BASENAMES_IDIOMATIC_EXAMPLES} )
|
|||||||
|
|
||||||
|
|
||||||
foreach( name ${TARGETS_IDIOMATIC_EXAMPLES} )
|
foreach( name ${TARGETS_IDIOMATIC_EXAMPLES} )
|
||||||
add_executable( ${name}
|
add_executable( ${name} ${name}.cpp )
|
||||||
${EXAMPLES_DIR}/${name}.cpp )
|
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
set(ALL_EXAMPLE_TARGETS
|
set(ALL_EXAMPLE_TARGETS
|
||||||
@@ -53,7 +54,7 @@ set(ALL_EXAMPLE_TARGETS
|
|||||||
)
|
)
|
||||||
|
|
||||||
foreach( name ${ALL_EXAMPLE_TARGETS} )
|
foreach( name ${ALL_EXAMPLE_TARGETS} )
|
||||||
target_link_libraries( ${name} Catch2 Catch2WithMain )
|
target_link_libraries( ${name} Catch2WithMain )
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
|
|
||||||
|
@@ -124,6 +124,13 @@ same as the Catch name; see also ``TEST_PREFIX`` and ``TEST_SUFFIX``.
|
|||||||
test executable and when the tests are executed themselves. This requires
|
test executable and when the tests are executed themselves. This requires
|
||||||
cmake/ctest >= 3.22.
|
cmake/ctest >= 3.22.
|
||||||
|
|
||||||
|
``DL_FRAMEWORK_PATHS path...``
|
||||||
|
Specifies paths that need to be set for the dynamic linker to find libraries
|
||||||
|
packaged as frameworks on Apple platforms when running the test executable
|
||||||
|
(DYLD_FRAMEWORK_PATH). These paths will both be set when retrieving the list
|
||||||
|
of test cases from the test executable and when the tests are executed themselves.
|
||||||
|
This requires cmake/ctest >= 3.22.
|
||||||
|
|
||||||
`DISCOVERY_MODE mode``
|
`DISCOVERY_MODE mode``
|
||||||
Provides control over when ``catch_discover_tests`` performs test discovery.
|
Provides control over when ``catch_discover_tests`` performs test discovery.
|
||||||
By default, ``POST_BUILD`` sets up a post-build command to perform test discovery
|
By default, ``POST_BUILD`` sets up a post-build command to perform test discovery
|
||||||
@@ -146,7 +153,7 @@ function(catch_discover_tests TARGET)
|
|||||||
""
|
""
|
||||||
""
|
""
|
||||||
"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"
|
"TEST_SPEC;EXTRA_ARGS;PROPERTIES;DL_PATHS;DL_FRAMEWORK_PATHS"
|
||||||
${ARGN}
|
${ARGN}
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -156,10 +163,11 @@ function(catch_discover_tests TARGET)
|
|||||||
if(NOT _TEST_LIST)
|
if(NOT _TEST_LIST)
|
||||||
set(_TEST_LIST ${TARGET}_TESTS)
|
set(_TEST_LIST ${TARGET}_TESTS)
|
||||||
endif()
|
endif()
|
||||||
if (_DL_PATHS)
|
if(_DL_PATHS AND ${CMAKE_VERSION} VERSION_LESS "3.22.0")
|
||||||
if(${CMAKE_VERSION} VERSION_LESS "3.22.0")
|
message(FATAL_ERROR "The DL_PATHS option requires at least cmake 3.22")
|
||||||
message(FATAL_ERROR "The DL_PATHS option requires at least cmake 3.22")
|
endif()
|
||||||
endif()
|
if(_DL_FRAMEWORK_PATHS AND ${CMAKE_VERSION} VERSION_LESS "3.22.0")
|
||||||
|
message(FATAL_ERROR "The DL_FRAMEWORK_PATHS option requires at least cmake 3.22")
|
||||||
endif()
|
endif()
|
||||||
if(NOT _DISCOVERY_MODE)
|
if(NOT _DISCOVERY_MODE)
|
||||||
if(NOT CMAKE_CATCH_DISCOVER_TESTS_DISCOVERY_MODE)
|
if(NOT CMAKE_CATCH_DISCOVER_TESTS_DISCOVERY_MODE)
|
||||||
@@ -205,6 +213,7 @@ function(catch_discover_tests TARGET)
|
|||||||
-D "TEST_OUTPUT_PREFIX=${_OUTPUT_PREFIX}"
|
-D "TEST_OUTPUT_PREFIX=${_OUTPUT_PREFIX}"
|
||||||
-D "TEST_OUTPUT_SUFFIX=${_OUTPUT_SUFFIX}"
|
-D "TEST_OUTPUT_SUFFIX=${_OUTPUT_SUFFIX}"
|
||||||
-D "TEST_DL_PATHS=${_DL_PATHS}"
|
-D "TEST_DL_PATHS=${_DL_PATHS}"
|
||||||
|
-D "TEST_DL_FRAMEWORK_PATHS=${_DL_FRAMEWORK_PATHS}"
|
||||||
-D "CTEST_FILE=${ctest_tests_file}"
|
-D "CTEST_FILE=${ctest_tests_file}"
|
||||||
-P "${_CATCH_DISCOVER_TESTS_SCRIPT}"
|
-P "${_CATCH_DISCOVER_TESTS_SCRIPT}"
|
||||||
VERBATIM
|
VERBATIM
|
||||||
@@ -250,6 +259,7 @@ function(catch_discover_tests TARGET)
|
|||||||
" TEST_OUTPUT_SUFFIX" " [==[" "${_OUTPUT_SUFFIX}" "]==]" "\n"
|
" TEST_OUTPUT_SUFFIX" " [==[" "${_OUTPUT_SUFFIX}" "]==]" "\n"
|
||||||
" 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"
|
||||||
" CTEST_FILE" " [==[" "${CTEST_FILE}" "]==]" "\n"
|
" CTEST_FILE" " [==[" "${CTEST_FILE}" "]==]" "\n"
|
||||||
" )" "\n"
|
" )" "\n"
|
||||||
" endif()" "\n"
|
" endif()" "\n"
|
||||||
|
@@ -21,8 +21,8 @@ function(catch_discover_tests_impl)
|
|||||||
cmake_parse_arguments(
|
cmake_parse_arguments(
|
||||||
""
|
""
|
||||||
""
|
""
|
||||||
"TEST_EXECUTABLE;TEST_WORKING_DIR;TEST_DL_PATHS;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_EXTRA_ARGS;TEST_PROPERTIES;TEST_EXECUTOR;TEST_DL_PATHS;TEST_DL_FRAMEWORK_PATHS"
|
||||||
${ARGN}
|
${ARGN}
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -36,6 +36,8 @@ function(catch_discover_tests_impl)
|
|||||||
set(output_prefix ${_TEST_OUTPUT_PREFIX})
|
set(output_prefix ${_TEST_OUTPUT_PREFIX})
|
||||||
set(output_suffix ${_TEST_OUTPUT_SUFFIX})
|
set(output_suffix ${_TEST_OUTPUT_SUFFIX})
|
||||||
set(dl_paths ${_TEST_DL_PATHS})
|
set(dl_paths ${_TEST_DL_PATHS})
|
||||||
|
set(dl_framework_paths ${_TEST_DL_FRAMEWORK_PATHS})
|
||||||
|
set(environment_modifications "")
|
||||||
set(script)
|
set(script)
|
||||||
set(suite)
|
set(suite)
|
||||||
set(tests)
|
set(tests)
|
||||||
@@ -56,10 +58,19 @@ function(catch_discover_tests_impl)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(dl_paths)
|
if(dl_paths)
|
||||||
cmake_path(CONVERT "${dl_paths}" TO_NATIVE_PATH_LIST paths)
|
cmake_path(CONVERT "$ENV{${dl_paths_variable_name}}" TO_NATIVE_PATH_LIST env_dl_paths)
|
||||||
|
list(PREPEND env_dl_paths "${dl_paths}")
|
||||||
|
cmake_path(CONVERT "${env_dl_paths}" TO_NATIVE_PATH_LIST paths)
|
||||||
set(ENV{${dl_paths_variable_name}} "${paths}")
|
set(ENV{${dl_paths_variable_name}} "${paths}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(APPLE AND dl_framework_paths)
|
||||||
|
cmake_path(CONVERT "$ENV{DYLD_FRAMEWORK_PATH}" TO_NATIVE_PATH_LIST env_dl_framework_paths)
|
||||||
|
list(PREPEND env_dl_framework_paths "${dl_framework_paths}")
|
||||||
|
cmake_path(CONVERT "${env_dl_framework_paths}" TO_NATIVE_PATH_LIST paths)
|
||||||
|
set(ENV{DYLD_FRAMEWORK_PATH} "${paths}")
|
||||||
|
endif()
|
||||||
|
|
||||||
execute_process(
|
execute_process(
|
||||||
COMMAND ${_TEST_EXECUTOR} "${_TEST_EXECUTABLE}" ${spec} --list-tests --verbosity quiet
|
COMMAND ${_TEST_EXECUTOR} "${_TEST_EXECUTABLE}" ${spec} --list-tests --verbosity quiet
|
||||||
OUTPUT_VARIABLE output
|
OUTPUT_VARIABLE output
|
||||||
@@ -117,7 +128,14 @@ function(catch_discover_tests_impl)
|
|||||||
if(dl_paths)
|
if(dl_paths)
|
||||||
foreach(path ${dl_paths})
|
foreach(path ${dl_paths})
|
||||||
cmake_path(NATIVE_PATH path native_path)
|
cmake_path(NATIVE_PATH path native_path)
|
||||||
list(APPEND environment_modifications "${dl_paths_variable_name}=path_list_prepend:${native_path}")
|
list(PREPEND environment_modifications "${dl_paths_variable_name}=path_list_prepend:${native_path}")
|
||||||
|
endforeach()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(APPLE AND dl_framework_paths)
|
||||||
|
foreach(path ${dl_framework_paths})
|
||||||
|
cmake_path(NATIVE_PATH path native_path)
|
||||||
|
list(PREPEND environment_modifications "DYLD_FRAMEWORK_PATH=path_list_prepend:${native_path}")
|
||||||
endforeach()
|
endforeach()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
@@ -187,6 +205,7 @@ if(CMAKE_SCRIPT_MODE_FILE)
|
|||||||
TEST_OUTPUT_PREFIX ${TEST_OUTPUT_PREFIX}
|
TEST_OUTPUT_PREFIX ${TEST_OUTPUT_PREFIX}
|
||||||
TEST_OUTPUT_SUFFIX ${TEST_OUTPUT_SUFFIX}
|
TEST_OUTPUT_SUFFIX ${TEST_OUTPUT_SUFFIX}
|
||||||
TEST_DL_PATHS ${TEST_DL_PATHS}
|
TEST_DL_PATHS ${TEST_DL_PATHS}
|
||||||
|
TEST_DL_FRAMEWORK_PATHS ${TEST_DL_FRAMEWORK_PATHS}
|
||||||
CTEST_FILE ${CTEST_FILE}
|
CTEST_FILE ${CTEST_FILE}
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
@@ -187,7 +187,7 @@ function(ParseAndAddCatchTests_ParseFile SourceFile TestTarget)
|
|||||||
if(result)
|
if(result)
|
||||||
set(HiddenTagFound ON)
|
set(HiddenTagFound ON)
|
||||||
break()
|
break()
|
||||||
endif(result)
|
endif()
|
||||||
endforeach(label)
|
endforeach(label)
|
||||||
if(PARSE_CATCH_TESTS_NO_HIDDEN_TESTS AND ${HiddenTagFound} AND ${CMAKE_VERSION} VERSION_LESS "3.9")
|
if(PARSE_CATCH_TESTS_NO_HIDDEN_TESTS AND ${HiddenTagFound} AND ${CMAKE_VERSION} VERSION_LESS "3.9")
|
||||||
ParseAndAddCatchTests_PrintDebugMessage("Skipping test \"${CTestName}\" as it has [!hide], [.] or [.foo] label")
|
ParseAndAddCatchTests_PrintDebugMessage("Skipping test \"${CTestName}\" as it has [!hide], [.] or [.foo] label")
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@
|
|||||||
project(
|
project(
|
||||||
'catch2',
|
'catch2',
|
||||||
'cpp',
|
'cpp',
|
||||||
version: '3.5.0', # CML version placeholder, don't delete
|
version: '3.7.0', # CML version placeholder, don't delete
|
||||||
license: 'BSL-1.0',
|
license: 'BSL-1.0',
|
||||||
meson_version: '>=0.54.1',
|
meson_version: '>=0.54.1',
|
||||||
)
|
)
|
||||||
|
@@ -48,6 +48,7 @@ set(IMPL_HEADERS
|
|||||||
${SOURCES_DIR}/catch_approx.hpp
|
${SOURCES_DIR}/catch_approx.hpp
|
||||||
${SOURCES_DIR}/catch_assertion_info.hpp
|
${SOURCES_DIR}/catch_assertion_info.hpp
|
||||||
${SOURCES_DIR}/catch_assertion_result.hpp
|
${SOURCES_DIR}/catch_assertion_result.hpp
|
||||||
|
${SOURCES_DIR}/catch_case_sensitive.hpp
|
||||||
${SOURCES_DIR}/catch_config.hpp
|
${SOURCES_DIR}/catch_config.hpp
|
||||||
${SOURCES_DIR}/catch_get_random_seed.hpp
|
${SOURCES_DIR}/catch_get_random_seed.hpp
|
||||||
${SOURCES_DIR}/catch_message.hpp
|
${SOURCES_DIR}/catch_message.hpp
|
||||||
@@ -67,13 +68,13 @@ set(IMPL_HEADERS
|
|||||||
${SOURCES_DIR}/catch_version_macros.hpp
|
${SOURCES_DIR}/catch_version_macros.hpp
|
||||||
${SOURCES_DIR}/internal/catch_assertion_handler.hpp
|
${SOURCES_DIR}/internal/catch_assertion_handler.hpp
|
||||||
${SOURCES_DIR}/internal/catch_case_insensitive_comparisons.hpp
|
${SOURCES_DIR}/internal/catch_case_insensitive_comparisons.hpp
|
||||||
${SOURCES_DIR}/internal/catch_case_sensitive.hpp
|
|
||||||
${SOURCES_DIR}/internal/catch_clara.hpp
|
${SOURCES_DIR}/internal/catch_clara.hpp
|
||||||
${SOURCES_DIR}/internal/catch_commandline.hpp
|
${SOURCES_DIR}/internal/catch_commandline.hpp
|
||||||
${SOURCES_DIR}/internal/catch_compare_traits.hpp
|
${SOURCES_DIR}/internal/catch_compare_traits.hpp
|
||||||
${SOURCES_DIR}/internal/catch_compiler_capabilities.hpp
|
${SOURCES_DIR}/internal/catch_compiler_capabilities.hpp
|
||||||
${SOURCES_DIR}/internal/catch_config_android_logwrite.hpp
|
${SOURCES_DIR}/internal/catch_config_android_logwrite.hpp
|
||||||
${SOURCES_DIR}/internal/catch_config_counter.hpp
|
${SOURCES_DIR}/internal/catch_config_counter.hpp
|
||||||
|
${SOURCES_DIR}/internal/catch_config_prefix_messages.hpp
|
||||||
${SOURCES_DIR}/internal/catch_config_static_analysis_support.hpp
|
${SOURCES_DIR}/internal/catch_config_static_analysis_support.hpp
|
||||||
${SOURCES_DIR}/internal/catch_config_uncaught_exceptions.hpp
|
${SOURCES_DIR}/internal/catch_config_uncaught_exceptions.hpp
|
||||||
${SOURCES_DIR}/internal/catch_config_wchar.hpp
|
${SOURCES_DIR}/internal/catch_config_wchar.hpp
|
||||||
@@ -194,7 +195,6 @@ set(IMPL_SOURCES
|
|||||||
${SOURCES_DIR}/internal/catch_random_seed_generation.cpp
|
${SOURCES_DIR}/internal/catch_random_seed_generation.cpp
|
||||||
${SOURCES_DIR}/internal/catch_reporter_registry.cpp
|
${SOURCES_DIR}/internal/catch_reporter_registry.cpp
|
||||||
${SOURCES_DIR}/internal/catch_reporter_spec_parser.cpp
|
${SOURCES_DIR}/internal/catch_reporter_spec_parser.cpp
|
||||||
${SOURCES_DIR}/internal/catch_result_type.cpp
|
|
||||||
${SOURCES_DIR}/internal/catch_reusable_string_stream.cpp
|
${SOURCES_DIR}/internal/catch_reusable_string_stream.cpp
|
||||||
${SOURCES_DIR}/internal/catch_run_context.cpp
|
${SOURCES_DIR}/internal/catch_run_context.cpp
|
||||||
${SOURCES_DIR}/internal/catch_section.cpp
|
${SOURCES_DIR}/internal/catch_section.cpp
|
||||||
@@ -348,11 +348,13 @@ source_group("generated headers"
|
|||||||
)
|
)
|
||||||
|
|
||||||
add_library(Catch2 ${ALL_FILES})
|
add_library(Catch2 ${ALL_FILES})
|
||||||
add_build_reproducibility_settings(Catch2)
|
if (CATCH_ENABLE_REPRODUCIBLE_BUILD)
|
||||||
|
add_build_reproducibility_settings(Catch2)
|
||||||
|
endif()
|
||||||
add_library(Catch2::Catch2 ALIAS Catch2)
|
add_library(Catch2::Catch2 ALIAS Catch2)
|
||||||
|
|
||||||
if (ANDROID)
|
if (ANDROID)
|
||||||
target_link_libraries(Catch2 INTERFACE log)
|
target_link_libraries(Catch2 PRIVATE log)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set_target_properties(Catch2 PROPERTIES
|
set_target_properties(Catch2 PROPERTIES
|
||||||
@@ -360,29 +362,10 @@ set_target_properties(Catch2 PROPERTIES
|
|||||||
VERSION ${PROJECT_VERSION}
|
VERSION ${PROJECT_VERSION}
|
||||||
SOVERSION ${PROJECT_VERSION})
|
SOVERSION ${PROJECT_VERSION})
|
||||||
|
|
||||||
# depend on bunch of C++11 and C++14 features to have C++14 enabled by default
|
# require C++14
|
||||||
target_compile_features(Catch2
|
target_compile_features(Catch2
|
||||||
PUBLIC
|
PUBLIC
|
||||||
cxx_alignas
|
cxx_std_14
|
||||||
cxx_alignof
|
|
||||||
cxx_attributes
|
|
||||||
cxx_auto_type
|
|
||||||
cxx_constexpr
|
|
||||||
cxx_defaulted_functions
|
|
||||||
cxx_deleted_functions
|
|
||||||
cxx_final
|
|
||||||
cxx_lambdas
|
|
||||||
cxx_noexcept
|
|
||||||
cxx_override
|
|
||||||
cxx_range_for
|
|
||||||
cxx_rvalue_references
|
|
||||||
cxx_static_assert
|
|
||||||
cxx_strong_enums
|
|
||||||
cxx_trailing_return_types
|
|
||||||
cxx_unicode_literals
|
|
||||||
cxx_user_literals
|
|
||||||
cxx_variable_templates
|
|
||||||
cxx_variadic_macros
|
|
||||||
)
|
)
|
||||||
|
|
||||||
configure_file(
|
configure_file(
|
||||||
@@ -401,7 +384,9 @@ target_include_directories(Catch2
|
|||||||
add_library(Catch2WithMain
|
add_library(Catch2WithMain
|
||||||
${SOURCES_DIR}/internal/catch_main.cpp
|
${SOURCES_DIR}/internal/catch_main.cpp
|
||||||
)
|
)
|
||||||
add_build_reproducibility_settings(Catch2WithMain)
|
if (CATCH_ENABLE_REPRODUCIBLE_BUILD)
|
||||||
|
add_build_reproducibility_settings(Catch2WithMain)
|
||||||
|
endif()
|
||||||
add_library(Catch2::Catch2WithMain ALIAS Catch2WithMain)
|
add_library(Catch2::Catch2WithMain ALIAS Catch2WithMain)
|
||||||
target_link_libraries(Catch2WithMain PUBLIC Catch2)
|
target_link_libraries(Catch2WithMain PUBLIC Catch2)
|
||||||
set_target_properties(Catch2WithMain
|
set_target_properties(Catch2WithMain
|
||||||
@@ -471,26 +456,7 @@ if (CATCH_BUILD_EXAMPLES OR CATCH_BUILD_EXTRA_TESTS)
|
|||||||
)
|
)
|
||||||
target_compile_features(Catch2_buildall_interface
|
target_compile_features(Catch2_buildall_interface
|
||||||
INTERFACE
|
INTERFACE
|
||||||
cxx_alignas
|
cxx_std_14
|
||||||
cxx_alignof
|
|
||||||
cxx_attributes
|
|
||||||
cxx_auto_type
|
|
||||||
cxx_constexpr
|
|
||||||
cxx_defaulted_functions
|
|
||||||
cxx_deleted_functions
|
|
||||||
cxx_final
|
|
||||||
cxx_lambdas
|
|
||||||
cxx_noexcept
|
|
||||||
cxx_override
|
|
||||||
cxx_range_for
|
|
||||||
cxx_rvalue_references
|
|
||||||
cxx_static_assert
|
|
||||||
cxx_strong_enums
|
|
||||||
cxx_trailing_return_types
|
|
||||||
cxx_unicode_literals
|
|
||||||
cxx_user_literals
|
|
||||||
cxx_variable_templates
|
|
||||||
cxx_variadic_macros
|
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
@@ -45,12 +45,12 @@ namespace Catch {
|
|||||||
: fun(CATCH_MOVE(func)), name(CATCH_MOVE(benchmarkName)) {}
|
: fun(CATCH_MOVE(func)), name(CATCH_MOVE(benchmarkName)) {}
|
||||||
|
|
||||||
template <typename Clock>
|
template <typename Clock>
|
||||||
ExecutionPlan prepare(const IConfig &cfg, Environment env) const {
|
ExecutionPlan prepare(const IConfig &cfg, Environment env) {
|
||||||
auto min_time = env.clock_resolution.mean * Detail::minimum_ticks;
|
auto min_time = env.clock_resolution.mean * Detail::minimum_ticks;
|
||||||
auto run_time = std::max(min_time, std::chrono::duration_cast<decltype(min_time)>(cfg.benchmarkWarmupTime()));
|
auto run_time = std::max(min_time, std::chrono::duration_cast<decltype(min_time)>(cfg.benchmarkWarmupTime()));
|
||||||
auto&& test = Detail::run_for_at_least<Clock>(std::chrono::duration_cast<IDuration>(run_time), 1, fun);
|
auto&& test = Detail::run_for_at_least<Clock>(std::chrono::duration_cast<IDuration>(run_time), 1, fun);
|
||||||
int new_iters = static_cast<int>(std::ceil(min_time * test.iterations / test.elapsed));
|
int new_iters = static_cast<int>(std::ceil(min_time * test.iterations / test.elapsed));
|
||||||
return { new_iters, test.elapsed / test.iterations * new_iters * cfg.benchmarkSamples(), fun, std::chrono::duration_cast<FDuration>(cfg.benchmarkWarmupTime()), Detail::warmup_iterations };
|
return { new_iters, test.elapsed / test.iterations * new_iters * cfg.benchmarkSamples(), CATCH_MOVE(fun), std::chrono::duration_cast<FDuration>(cfg.benchmarkWarmupTime()), Detail::warmup_iterations };
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename Clock = default_clock>
|
template <typename Clock = default_clock>
|
||||||
|
@@ -19,7 +19,7 @@ namespace Catch {
|
|||||||
int high_mild = 0; // 1.5 to 3 times IQR above Q3
|
int high_mild = 0; // 1.5 to 3 times IQR above Q3
|
||||||
int high_severe = 0; // more than 3 times IQR above Q3
|
int high_severe = 0; // more than 3 times IQR above Q3
|
||||||
|
|
||||||
int total() const {
|
constexpr int total() const {
|
||||||
return low_severe + low_mild + high_mild + high_severe;
|
return low_severe + low_mild + high_mild + high_severe;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@@ -63,8 +63,8 @@ namespace Catch {
|
|||||||
FDuration mean = FDuration(0);
|
FDuration mean = FDuration(0);
|
||||||
int i = 0;
|
int i = 0;
|
||||||
for (auto it = first; it < last; ++it, ++i) {
|
for (auto it = first; it < last; ++it, ++i) {
|
||||||
samples.push_back(FDuration(*it));
|
samples.push_back(*it);
|
||||||
mean += FDuration(*it);
|
mean += *it;
|
||||||
}
|
}
|
||||||
mean /= i;
|
mean /= i;
|
||||||
|
|
||||||
|
@@ -11,7 +11,13 @@
|
|||||||
namespace Catch {
|
namespace Catch {
|
||||||
namespace Benchmark {
|
namespace Benchmark {
|
||||||
namespace Detail {
|
namespace Detail {
|
||||||
|
struct do_nothing {
|
||||||
|
void operator()() const {}
|
||||||
|
};
|
||||||
|
|
||||||
BenchmarkFunction::callable::~callable() = default;
|
BenchmarkFunction::callable::~callable() = default;
|
||||||
|
BenchmarkFunction::BenchmarkFunction():
|
||||||
|
f( new model<do_nothing>{ {} } ){}
|
||||||
} // namespace Detail
|
} // namespace Detail
|
||||||
} // namespace Benchmark
|
} // namespace Benchmark
|
||||||
} // namespace Catch
|
} // namespace Catch
|
||||||
|
@@ -35,22 +35,17 @@ namespace Catch {
|
|||||||
private:
|
private:
|
||||||
struct callable {
|
struct callable {
|
||||||
virtual void call(Chronometer meter) const = 0;
|
virtual void call(Chronometer meter) const = 0;
|
||||||
virtual Catch::Detail::unique_ptr<callable> clone() const = 0;
|
|
||||||
virtual ~callable(); // = default;
|
virtual ~callable(); // = default;
|
||||||
|
|
||||||
callable() = default;
|
callable() = default;
|
||||||
callable(callable const&) = default;
|
callable(callable&&) = default;
|
||||||
callable& operator=(callable const&) = default;
|
callable& operator=(callable&&) = default;
|
||||||
};
|
};
|
||||||
template <typename Fun>
|
template <typename Fun>
|
||||||
struct model : public callable {
|
struct model : public callable {
|
||||||
model(Fun&& fun_) : fun(CATCH_MOVE(fun_)) {}
|
model(Fun&& fun_) : fun(CATCH_MOVE(fun_)) {}
|
||||||
model(Fun const& fun_) : fun(fun_) {}
|
model(Fun const& fun_) : fun(fun_) {}
|
||||||
|
|
||||||
Catch::Detail::unique_ptr<callable> clone() const override {
|
|
||||||
return Catch::Detail::make_unique<model<Fun>>( *this );
|
|
||||||
}
|
|
||||||
|
|
||||||
void call(Chronometer meter) const override {
|
void call(Chronometer meter) const override {
|
||||||
call(meter, is_callable<Fun(Chronometer)>());
|
call(meter, is_callable<Fun(Chronometer)>());
|
||||||
}
|
}
|
||||||
@@ -64,14 +59,8 @@ namespace Catch {
|
|||||||
Fun fun;
|
Fun fun;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct do_nothing { void operator()() const {} };
|
|
||||||
|
|
||||||
template <typename T>
|
|
||||||
BenchmarkFunction(model<T>* c) : f(c) {}
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
BenchmarkFunction()
|
BenchmarkFunction();
|
||||||
: f(new model<do_nothing>{ {} }) {}
|
|
||||||
|
|
||||||
template <typename Fun,
|
template <typename Fun,
|
||||||
std::enable_if_t<!is_related<Fun, BenchmarkFunction>::value, int> = 0>
|
std::enable_if_t<!is_related<Fun, BenchmarkFunction>::value, int> = 0>
|
||||||
@@ -81,20 +70,12 @@ namespace Catch {
|
|||||||
BenchmarkFunction( BenchmarkFunction&& that ) noexcept:
|
BenchmarkFunction( BenchmarkFunction&& that ) noexcept:
|
||||||
f( CATCH_MOVE( that.f ) ) {}
|
f( CATCH_MOVE( that.f ) ) {}
|
||||||
|
|
||||||
BenchmarkFunction(BenchmarkFunction const& that)
|
|
||||||
: f(that.f->clone()) {}
|
|
||||||
|
|
||||||
BenchmarkFunction&
|
BenchmarkFunction&
|
||||||
operator=( BenchmarkFunction&& that ) noexcept {
|
operator=( BenchmarkFunction&& that ) noexcept {
|
||||||
f = CATCH_MOVE( that.f );
|
f = CATCH_MOVE( that.f );
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
BenchmarkFunction& operator=(BenchmarkFunction const& that) {
|
|
||||||
f = that.f->clone();
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
|
|
||||||
void operator()(Chronometer meter) const { f->call(meter); }
|
void operator()(Chronometer meter) const { f->call(meter); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@@ -27,15 +27,17 @@ namespace Catch {
|
|||||||
namespace Detail {
|
namespace Detail {
|
||||||
template <typename Clock>
|
template <typename Clock>
|
||||||
std::vector<double> resolution(int k) {
|
std::vector<double> resolution(int k) {
|
||||||
std::vector<TimePoint<Clock>> times;
|
const size_t points = static_cast<size_t>( k + 1 );
|
||||||
times.reserve(static_cast<size_t>(k + 1));
|
// To avoid overhead from the branch inside vector::push_back,
|
||||||
for ( int i = 0; i < k + 1; ++i ) {
|
// we allocate them all and then overwrite.
|
||||||
times.push_back( Clock::now() );
|
std::vector<TimePoint<Clock>> times(points);
|
||||||
|
for ( auto& time : times ) {
|
||||||
|
time = Clock::now();
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<double> deltas;
|
std::vector<double> deltas;
|
||||||
deltas.reserve(static_cast<size_t>(k));
|
deltas.reserve(static_cast<size_t>(k));
|
||||||
for ( size_t idx = 1; idx < times.size(); ++idx ) {
|
for ( size_t idx = 1; idx < points; ++idx ) {
|
||||||
deltas.push_back( static_cast<double>(
|
deltas.push_back( static_cast<double>(
|
||||||
( times[idx] - times[idx - 1] ).count() ) );
|
( times[idx] - times[idx - 1] ).count() ) );
|
||||||
}
|
}
|
||||||
@@ -55,12 +57,12 @@ namespace Catch {
|
|||||||
|
|
||||||
template <typename Clock>
|
template <typename Clock>
|
||||||
int warmup() {
|
int warmup() {
|
||||||
return run_for_at_least<Clock>(std::chrono::duration_cast<IDuration>(warmup_time), warmup_seed, &resolution<Clock>)
|
return run_for_at_least<Clock>(warmup_time, warmup_seed, &resolution<Clock>)
|
||||||
.iterations;
|
.iterations;
|
||||||
}
|
}
|
||||||
template <typename Clock>
|
template <typename Clock>
|
||||||
EnvironmentEstimate estimate_clock_resolution(int iterations) {
|
EnvironmentEstimate estimate_clock_resolution(int iterations) {
|
||||||
auto r = run_for_at_least<Clock>(std::chrono::duration_cast<IDuration>(clock_resolution_estimation_time), iterations, &resolution<Clock>)
|
auto r = run_for_at_least<Clock>(clock_resolution_estimation_time, iterations, &resolution<Clock>)
|
||||||
.result;
|
.result;
|
||||||
return {
|
return {
|
||||||
FDuration(mean(r.data(), r.data() + r.size())),
|
FDuration(mean(r.data(), r.data() + r.size())),
|
||||||
@@ -82,7 +84,7 @@ namespace Catch {
|
|||||||
};
|
};
|
||||||
time_clock(1);
|
time_clock(1);
|
||||||
int iters = clock_cost_estimation_iterations;
|
int iters = clock_cost_estimation_iterations;
|
||||||
auto&& r = run_for_at_least<Clock>(std::chrono::duration_cast<IDuration>(clock_cost_estimation_time), iters, time_clock);
|
auto&& r = run_for_at_least<Clock>(clock_cost_estimation_time, iters, time_clock);
|
||||||
std::vector<double> times;
|
std::vector<double> times;
|
||||||
int nsamples = static_cast<int>(std::ceil(time_limit / r.elapsed));
|
int nsamples = static_cast<int>(std::ceil(time_limit / r.elapsed));
|
||||||
times.reserve(static_cast<size_t>(nsamples));
|
times.reserve(static_cast<size_t>(nsamples));
|
||||||
|
@@ -20,7 +20,7 @@ namespace Catch {
|
|||||||
template <typename Clock, typename Fun, typename... Args>
|
template <typename Clock, typename Fun, typename... Args>
|
||||||
TimingOf<Fun, Args...> measure(Fun&& fun, Args&&... args) {
|
TimingOf<Fun, Args...> measure(Fun&& fun, Args&&... args) {
|
||||||
auto start = Clock::now();
|
auto start = Clock::now();
|
||||||
auto&& r = Detail::complete_invoke(fun, CATCH_FORWARD(args)...);
|
auto&& r = Detail::complete_invoke(CATCH_FORWARD(fun), CATCH_FORWARD(args)...);
|
||||||
auto end = Clock::now();
|
auto end = Clock::now();
|
||||||
auto delta = end - start;
|
auto delta = end - start;
|
||||||
return { delta, CATCH_FORWARD(r), 1 };
|
return { delta, CATCH_FORWARD(r), 1 };
|
||||||
|
@@ -12,6 +12,7 @@
|
|||||||
#include <catch2/internal/catch_compiler_capabilities.hpp>
|
#include <catch2/internal/catch_compiler_capabilities.hpp>
|
||||||
#include <catch2/internal/catch_floating_point_helpers.hpp>
|
#include <catch2/internal/catch_floating_point_helpers.hpp>
|
||||||
#include <catch2/internal/catch_random_number_generator.hpp>
|
#include <catch2/internal/catch_random_number_generator.hpp>
|
||||||
|
#include <catch2/internal/catch_uniform_integer_distribution.hpp>
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
@@ -38,21 +39,16 @@ namespace Catch {
|
|||||||
double const* last,
|
double const* last,
|
||||||
Estimator& estimator ) {
|
Estimator& estimator ) {
|
||||||
auto n = static_cast<size_t>( last - first );
|
auto n = static_cast<size_t>( last - first );
|
||||||
std::uniform_int_distribution<decltype( n )> dist( 0,
|
Catch::uniform_integer_distribution<size_t> dist( 0, n - 1 );
|
||||||
n - 1 );
|
|
||||||
|
|
||||||
sample out;
|
sample out;
|
||||||
out.reserve( resamples );
|
out.reserve( resamples );
|
||||||
// We allocate the vector outside the loop to avoid realloc
|
|
||||||
// per resample
|
|
||||||
std::vector<double> resampled;
|
std::vector<double> resampled;
|
||||||
resampled.reserve( n );
|
resampled.reserve( n );
|
||||||
for ( size_t i = 0; i < resamples; ++i ) {
|
for ( size_t i = 0; i < resamples; ++i ) {
|
||||||
resampled.clear();
|
resampled.clear();
|
||||||
for ( size_t s = 0; s < n; ++s ) {
|
for ( size_t s = 0; s < n; ++s ) {
|
||||||
resampled.push_back(
|
resampled.push_back( first[dist( rng )] );
|
||||||
first[static_cast<std::ptrdiff_t>(
|
|
||||||
dist( rng ) )] );
|
|
||||||
}
|
}
|
||||||
const auto estimate =
|
const auto estimate =
|
||||||
estimator( resampled.data(), resampled.data() + resampled.size() );
|
estimator( resampled.data(), resampled.data() + resampled.size() );
|
||||||
|
@@ -26,6 +26,7 @@
|
|||||||
#include <catch2/catch_approx.hpp>
|
#include <catch2/catch_approx.hpp>
|
||||||
#include <catch2/catch_assertion_info.hpp>
|
#include <catch2/catch_assertion_info.hpp>
|
||||||
#include <catch2/catch_assertion_result.hpp>
|
#include <catch2/catch_assertion_result.hpp>
|
||||||
|
#include <catch2/catch_case_sensitive.hpp>
|
||||||
#include <catch2/catch_config.hpp>
|
#include <catch2/catch_config.hpp>
|
||||||
#include <catch2/catch_get_random_seed.hpp>
|
#include <catch2/catch_get_random_seed.hpp>
|
||||||
#include <catch2/catch_message.hpp>
|
#include <catch2/catch_message.hpp>
|
||||||
@@ -47,7 +48,6 @@
|
|||||||
#include <catch2/interfaces/catch_interfaces_all.hpp>
|
#include <catch2/interfaces/catch_interfaces_all.hpp>
|
||||||
#include <catch2/internal/catch_assertion_handler.hpp>
|
#include <catch2/internal/catch_assertion_handler.hpp>
|
||||||
#include <catch2/internal/catch_case_insensitive_comparisons.hpp>
|
#include <catch2/internal/catch_case_insensitive_comparisons.hpp>
|
||||||
#include <catch2/internal/catch_case_sensitive.hpp>
|
|
||||||
#include <catch2/internal/catch_clara.hpp>
|
#include <catch2/internal/catch_clara.hpp>
|
||||||
#include <catch2/internal/catch_commandline.hpp>
|
#include <catch2/internal/catch_commandline.hpp>
|
||||||
#include <catch2/internal/catch_compare_traits.hpp>
|
#include <catch2/internal/catch_compare_traits.hpp>
|
||||||
|
@@ -25,7 +25,7 @@ bool marginComparison(double lhs, double rhs, double margin) {
|
|||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
|
||||||
Approx::Approx ( double value )
|
Approx::Approx ( double value )
|
||||||
: m_epsilon( std::numeric_limits<float>::epsilon()*100. ),
|
: m_epsilon( static_cast<double>(std::numeric_limits<float>::epsilon())*100. ),
|
||||||
m_margin( 0.0 ),
|
m_margin( 0.0 ),
|
||||||
m_scale( 0.0 ),
|
m_scale( 0.0 ),
|
||||||
m_value( value )
|
m_value( value )
|
||||||
|
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
|
||||||
AssertionResultData::AssertionResultData(ResultWas::OfType _resultType, LazyExpression const & _lazyExpression):
|
AssertionResultData::AssertionResultData(ResultWas::OfType _resultType, LazyExpression const& _lazyExpression):
|
||||||
lazyExpression(_lazyExpression),
|
lazyExpression(_lazyExpression),
|
||||||
resultType(_resultType) {}
|
resultType(_resultType) {}
|
||||||
|
|
||||||
|
@@ -107,14 +107,16 @@ namespace Catch {
|
|||||||
|
|
||||||
// Insert the default reporter if user hasn't asked for a specific one
|
// Insert the default reporter if user hasn't asked for a specific one
|
||||||
if ( m_data.reporterSpecifications.empty() ) {
|
if ( m_data.reporterSpecifications.empty() ) {
|
||||||
m_data.reporterSpecifications.push_back( {
|
|
||||||
#if defined( CATCH_CONFIG_DEFAULT_REPORTER )
|
#if defined( CATCH_CONFIG_DEFAULT_REPORTER )
|
||||||
CATCH_CONFIG_DEFAULT_REPORTER,
|
const auto default_spec = CATCH_CONFIG_DEFAULT_REPORTER;
|
||||||
#else
|
#else
|
||||||
"console",
|
const auto default_spec = "console";
|
||||||
#endif
|
#endif
|
||||||
{}, {}, {}
|
auto parsed = parseReporterSpec(default_spec);
|
||||||
} );
|
CATCH_ENFORCE( parsed,
|
||||||
|
"Cannot parse the provided default reporter spec: '"
|
||||||
|
<< default_spec << '\'' );
|
||||||
|
m_data.reporterSpecifications.push_back( std::move( *parsed ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( enableBazelEnvSupport() ) {
|
if ( enableBazelEnvSupport() ) {
|
||||||
|
@@ -69,7 +69,7 @@ namespace Catch {
|
|||||||
bool benchmarkNoAnalysis = false;
|
bool benchmarkNoAnalysis = false;
|
||||||
unsigned int benchmarkSamples = 100;
|
unsigned int benchmarkSamples = 100;
|
||||||
double benchmarkConfidenceInterval = 0.95;
|
double benchmarkConfidenceInterval = 0.95;
|
||||||
unsigned int benchmarkResamples = 100000;
|
unsigned int benchmarkResamples = 100'000;
|
||||||
std::chrono::milliseconds::rep benchmarkWarmupTime = 100;
|
std::chrono::milliseconds::rep benchmarkWarmupTime = 100;
|
||||||
|
|
||||||
Verbosity verbosity = Verbosity::Normal;
|
Verbosity verbosity = Verbosity::Normal;
|
||||||
|
@@ -91,6 +91,8 @@ namespace Catch {
|
|||||||
m_messages.back().message += " := ";
|
m_messages.back().message += " := ";
|
||||||
start = pos;
|
start = pos;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
|
default:; // noop
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
assert(openings.empty() && "Mismatched openings");
|
assert(openings.empty() && "Mismatched openings");
|
||||||
|
@@ -94,7 +94,7 @@ namespace Catch {
|
|||||||
do { \
|
do { \
|
||||||
Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, Catch::StringRef(), resultDisposition ); \
|
Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, Catch::StringRef(), resultDisposition ); \
|
||||||
catchAssertionHandler.handleMessage( messageType, ( Catch::MessageStream() << __VA_ARGS__ + ::Catch::StreamEndStop() ).m_stream.str() ); \
|
catchAssertionHandler.handleMessage( messageType, ( Catch::MessageStream() << __VA_ARGS__ + ::Catch::StreamEndStop() ).m_stream.str() ); \
|
||||||
INTERNAL_CATCH_REACT( catchAssertionHandler ) \
|
catchAssertionHandler.complete(); \
|
||||||
} while( false )
|
} while( false )
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
@@ -20,7 +20,6 @@
|
|||||||
#include <catch2/internal/catch_noncopyable.hpp>
|
#include <catch2/internal/catch_noncopyable.hpp>
|
||||||
#include <catch2/interfaces/catch_interfaces_reporter_factory.hpp>
|
#include <catch2/interfaces/catch_interfaces_reporter_factory.hpp>
|
||||||
#include <catch2/internal/catch_move_and_forward.hpp>
|
#include <catch2/internal/catch_move_and_forward.hpp>
|
||||||
#include <catch2/internal/catch_reporter_registry.hpp>
|
|
||||||
|
|
||||||
#include <exception>
|
#include <exception>
|
||||||
|
|
||||||
|
@@ -9,6 +9,7 @@
|
|||||||
#include <catch2/internal/catch_enforce.hpp>
|
#include <catch2/internal/catch_enforce.hpp>
|
||||||
#include <catch2/internal/catch_string_manip.hpp>
|
#include <catch2/internal/catch_string_manip.hpp>
|
||||||
#include <catch2/internal/catch_case_insensitive_comparisons.hpp>
|
#include <catch2/internal/catch_case_insensitive_comparisons.hpp>
|
||||||
|
#include <catch2/internal/catch_test_registry.hpp>
|
||||||
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cctype>
|
#include <cctype>
|
||||||
@@ -21,26 +22,26 @@ namespace Catch {
|
|||||||
static_assert(sizeof(TestCaseProperties) == sizeof(TCP_underlying_type),
|
static_assert(sizeof(TestCaseProperties) == sizeof(TCP_underlying_type),
|
||||||
"The size of the TestCaseProperties is different from the assumed size");
|
"The size of the TestCaseProperties is different from the assumed size");
|
||||||
|
|
||||||
TestCaseProperties operator|(TestCaseProperties lhs, TestCaseProperties rhs) {
|
constexpr TestCaseProperties operator|(TestCaseProperties lhs, TestCaseProperties rhs) {
|
||||||
return static_cast<TestCaseProperties>(
|
return static_cast<TestCaseProperties>(
|
||||||
static_cast<TCP_underlying_type>(lhs) | static_cast<TCP_underlying_type>(rhs)
|
static_cast<TCP_underlying_type>(lhs) | static_cast<TCP_underlying_type>(rhs)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
TestCaseProperties& operator|=(TestCaseProperties& lhs, TestCaseProperties rhs) {
|
constexpr TestCaseProperties& operator|=(TestCaseProperties& lhs, TestCaseProperties rhs) {
|
||||||
lhs = static_cast<TestCaseProperties>(
|
lhs = static_cast<TestCaseProperties>(
|
||||||
static_cast<TCP_underlying_type>(lhs) | static_cast<TCP_underlying_type>(rhs)
|
static_cast<TCP_underlying_type>(lhs) | static_cast<TCP_underlying_type>(rhs)
|
||||||
);
|
);
|
||||||
return lhs;
|
return lhs;
|
||||||
}
|
}
|
||||||
|
|
||||||
TestCaseProperties operator&(TestCaseProperties lhs, TestCaseProperties rhs) {
|
constexpr TestCaseProperties operator&(TestCaseProperties lhs, TestCaseProperties rhs) {
|
||||||
return static_cast<TestCaseProperties>(
|
return static_cast<TestCaseProperties>(
|
||||||
static_cast<TCP_underlying_type>(lhs) & static_cast<TCP_underlying_type>(rhs)
|
static_cast<TCP_underlying_type>(lhs) & static_cast<TCP_underlying_type>(rhs)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool applies(TestCaseProperties tcp) {
|
constexpr bool applies(TestCaseProperties tcp) {
|
||||||
static_assert(static_cast<TCP_underlying_type>(TestCaseProperties::None) == 0,
|
static_assert(static_cast<TCP_underlying_type>(TestCaseProperties::None) == 0,
|
||||||
"TestCaseProperties::None must be equal to 0");
|
"TestCaseProperties::None must be equal to 0");
|
||||||
return tcp != TestCaseProperties::None;
|
return tcp != TestCaseProperties::None;
|
||||||
@@ -79,13 +80,15 @@ namespace Catch {
|
|||||||
return "Anonymous test case " + std::to_string(++counter);
|
return "Anonymous test case " + std::to_string(++counter);
|
||||||
}
|
}
|
||||||
|
|
||||||
StringRef extractFilenamePart(StringRef filename) {
|
constexpr StringRef extractFilenamePart(StringRef filename) {
|
||||||
size_t lastDot = filename.size();
|
size_t lastDot = filename.size();
|
||||||
while (lastDot > 0 && filename[lastDot - 1] != '.') {
|
while (lastDot > 0 && filename[lastDot - 1] != '.') {
|
||||||
--lastDot;
|
--lastDot;
|
||||||
}
|
}
|
||||||
--lastDot;
|
// In theory we could have filename without any extension in it
|
||||||
|
if ( lastDot == 0 ) { return StringRef(); }
|
||||||
|
|
||||||
|
--lastDot;
|
||||||
size_t nameStart = lastDot;
|
size_t nameStart = lastDot;
|
||||||
while (nameStart > 0 && filename[nameStart - 1] != '/' && filename[nameStart - 1] != '\\') {
|
while (nameStart > 0 && filename[nameStart - 1] != '/' && filename[nameStart - 1] != '\\') {
|
||||||
--nameStart;
|
--nameStart;
|
||||||
@@ -95,7 +98,7 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Returns the upper bound on size of extra tags ([#file]+[.])
|
// Returns the upper bound on size of extra tags ([#file]+[.])
|
||||||
size_t sizeOfExtraTags(StringRef filepath) {
|
constexpr size_t sizeOfExtraTags(StringRef filepath) {
|
||||||
// [.] is 3, [#] is another 3
|
// [.] is 3, [#] is another 3
|
||||||
const size_t extras = 3 + 3;
|
const size_t extras = 3 + 3;
|
||||||
return extractFilenamePart(filepath).size() + extras;
|
return extractFilenamePart(filepath).size() + extras;
|
||||||
@@ -256,8 +259,4 @@ namespace Catch {
|
|||||||
return lhs.tags < rhs.tags;
|
return lhs.tags < rhs.tags;
|
||||||
}
|
}
|
||||||
|
|
||||||
TestCaseInfo const& TestCaseHandle::getTestCaseInfo() const {
|
|
||||||
return *m_info;
|
|
||||||
}
|
|
||||||
|
|
||||||
} // end namespace Catch
|
} // end namespace Catch
|
||||||
|
@@ -8,10 +8,10 @@
|
|||||||
#ifndef CATCH_TEST_CASE_INFO_HPP_INCLUDED
|
#ifndef CATCH_TEST_CASE_INFO_HPP_INCLUDED
|
||||||
#define CATCH_TEST_CASE_INFO_HPP_INCLUDED
|
#define CATCH_TEST_CASE_INFO_HPP_INCLUDED
|
||||||
|
|
||||||
|
#include <catch2/interfaces/catch_interfaces_test_invoker.hpp>
|
||||||
#include <catch2/internal/catch_source_line_info.hpp>
|
#include <catch2/internal/catch_source_line_info.hpp>
|
||||||
#include <catch2/internal/catch_noncopyable.hpp>
|
#include <catch2/internal/catch_noncopyable.hpp>
|
||||||
#include <catch2/internal/catch_stringref.hpp>
|
#include <catch2/internal/catch_stringref.hpp>
|
||||||
#include <catch2/internal/catch_test_registry.hpp>
|
|
||||||
#include <catch2/internal/catch_unique_ptr.hpp>
|
#include <catch2/internal/catch_unique_ptr.hpp>
|
||||||
|
|
||||||
|
|
||||||
@@ -44,6 +44,7 @@ namespace Catch {
|
|||||||
};
|
};
|
||||||
|
|
||||||
class ITestInvoker;
|
class ITestInvoker;
|
||||||
|
struct NameAndTags;
|
||||||
|
|
||||||
enum class TestCaseProperties : uint8_t {
|
enum class TestCaseProperties : uint8_t {
|
||||||
None = 0,
|
None = 0,
|
||||||
@@ -67,7 +68,7 @@ namespace Catch {
|
|||||||
struct TestCaseInfo : Detail::NonCopyable {
|
struct TestCaseInfo : Detail::NonCopyable {
|
||||||
|
|
||||||
TestCaseInfo(StringRef _className,
|
TestCaseInfo(StringRef _className,
|
||||||
NameAndTags const& _tags,
|
NameAndTags const& _nameAndTags,
|
||||||
SourceLineInfo const& _lineInfo);
|
SourceLineInfo const& _lineInfo);
|
||||||
|
|
||||||
bool isHidden() const;
|
bool isHidden() const;
|
||||||
@@ -108,14 +109,24 @@ namespace Catch {
|
|||||||
TestCaseInfo* m_info;
|
TestCaseInfo* m_info;
|
||||||
ITestInvoker* m_invoker;
|
ITestInvoker* m_invoker;
|
||||||
public:
|
public:
|
||||||
TestCaseHandle(TestCaseInfo* info, ITestInvoker* invoker) :
|
constexpr TestCaseHandle(TestCaseInfo* info, ITestInvoker* invoker) :
|
||||||
m_info(info), m_invoker(invoker) {}
|
m_info(info), m_invoker(invoker) {}
|
||||||
|
|
||||||
|
void prepareTestCase() const {
|
||||||
|
m_invoker->prepareTestCase();
|
||||||
|
}
|
||||||
|
|
||||||
|
void tearDownTestCase() const {
|
||||||
|
m_invoker->tearDownTestCase();
|
||||||
|
}
|
||||||
|
|
||||||
void invoke() const {
|
void invoke() const {
|
||||||
m_invoker->invoke();
|
m_invoker->invoke();
|
||||||
}
|
}
|
||||||
|
|
||||||
TestCaseInfo const& getTestCaseInfo() const;
|
constexpr TestCaseInfo const& getTestCaseInfo() const {
|
||||||
|
return *m_info;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
Detail::unique_ptr<TestCaseInfo>
|
Detail::unique_ptr<TestCaseInfo>
|
||||||
|
@@ -43,6 +43,7 @@
|
|||||||
#define CATCH_TEST_CASE( ... ) INTERNAL_CATCH_TESTCASE( __VA_ARGS__ )
|
#define CATCH_TEST_CASE( ... ) INTERNAL_CATCH_TESTCASE( __VA_ARGS__ )
|
||||||
#define CATCH_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEST_CASE_METHOD( className, __VA_ARGS__ )
|
#define CATCH_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEST_CASE_METHOD( className, __VA_ARGS__ )
|
||||||
#define CATCH_METHOD_AS_TEST_CASE( method, ... ) INTERNAL_CATCH_METHOD_AS_TEST_CASE( method, __VA_ARGS__ )
|
#define CATCH_METHOD_AS_TEST_CASE( method, ... ) INTERNAL_CATCH_METHOD_AS_TEST_CASE( method, __VA_ARGS__ )
|
||||||
|
#define CATCH_TEST_CASE_PERSISTENT_FIXTURE( className, ... ) INTERNAL_CATCH_TEST_CASE_PERSISTENT_FIXTURE( className, __VA_ARGS__ )
|
||||||
#define CATCH_REGISTER_TEST_CASE( Function, ... ) INTERNAL_CATCH_REGISTER_TESTCASE( Function, __VA_ARGS__ )
|
#define CATCH_REGISTER_TEST_CASE( Function, ... ) INTERNAL_CATCH_REGISTER_TESTCASE( Function, __VA_ARGS__ )
|
||||||
#define CATCH_SECTION( ... ) INTERNAL_CATCH_SECTION( __VA_ARGS__ )
|
#define CATCH_SECTION( ... ) INTERNAL_CATCH_SECTION( __VA_ARGS__ )
|
||||||
#define CATCH_DYNAMIC_SECTION( ... ) INTERNAL_CATCH_DYNAMIC_SECTION( __VA_ARGS__ )
|
#define CATCH_DYNAMIC_SECTION( ... ) INTERNAL_CATCH_DYNAMIC_SECTION( __VA_ARGS__ )
|
||||||
@@ -97,6 +98,7 @@
|
|||||||
#define CATCH_TEST_CASE( ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( CATCH2_INTERNAL_TEST_ ))
|
#define CATCH_TEST_CASE( ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( CATCH2_INTERNAL_TEST_ ))
|
||||||
#define CATCH_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( CATCH2_INTERNAL_TEST_ ))
|
#define CATCH_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( CATCH2_INTERNAL_TEST_ ))
|
||||||
#define CATCH_METHOD_AS_TEST_CASE( method, ... )
|
#define CATCH_METHOD_AS_TEST_CASE( method, ... )
|
||||||
|
#define CATCH_TEST_CASE_PERSISTENT_FIXTURE( className, ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( CATCH2_INTERNAL_TEST_ ))
|
||||||
#define CATCH_REGISTER_TEST_CASE( Function, ... ) (void)(0)
|
#define CATCH_REGISTER_TEST_CASE( Function, ... ) (void)(0)
|
||||||
#define CATCH_SECTION( ... )
|
#define CATCH_SECTION( ... )
|
||||||
#define CATCH_DYNAMIC_SECTION( ... )
|
#define CATCH_DYNAMIC_SECTION( ... )
|
||||||
@@ -142,6 +144,7 @@
|
|||||||
#define TEST_CASE( ... ) INTERNAL_CATCH_TESTCASE( __VA_ARGS__ )
|
#define TEST_CASE( ... ) INTERNAL_CATCH_TESTCASE( __VA_ARGS__ )
|
||||||
#define TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEST_CASE_METHOD( className, __VA_ARGS__ )
|
#define TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEST_CASE_METHOD( className, __VA_ARGS__ )
|
||||||
#define METHOD_AS_TEST_CASE( method, ... ) INTERNAL_CATCH_METHOD_AS_TEST_CASE( method, __VA_ARGS__ )
|
#define METHOD_AS_TEST_CASE( method, ... ) INTERNAL_CATCH_METHOD_AS_TEST_CASE( method, __VA_ARGS__ )
|
||||||
|
#define TEST_CASE_PERSISTENT_FIXTURE( className, ... ) INTERNAL_CATCH_TEST_CASE_PERSISTENT_FIXTURE( className, __VA_ARGS__ )
|
||||||
#define REGISTER_TEST_CASE( Function, ... ) INTERNAL_CATCH_REGISTER_TESTCASE( Function, __VA_ARGS__ )
|
#define REGISTER_TEST_CASE( Function, ... ) INTERNAL_CATCH_REGISTER_TESTCASE( Function, __VA_ARGS__ )
|
||||||
#define SECTION( ... ) INTERNAL_CATCH_SECTION( __VA_ARGS__ )
|
#define SECTION( ... ) INTERNAL_CATCH_SECTION( __VA_ARGS__ )
|
||||||
#define DYNAMIC_SECTION( ... ) INTERNAL_CATCH_DYNAMIC_SECTION( __VA_ARGS__ )
|
#define DYNAMIC_SECTION( ... ) INTERNAL_CATCH_DYNAMIC_SECTION( __VA_ARGS__ )
|
||||||
@@ -195,6 +198,7 @@
|
|||||||
#define TEST_CASE( ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( CATCH2_INTERNAL_TEST_ ), __VA_ARGS__)
|
#define TEST_CASE( ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( CATCH2_INTERNAL_TEST_ ), __VA_ARGS__)
|
||||||
#define TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( CATCH2_INTERNAL_TEST_ ))
|
#define TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( CATCH2_INTERNAL_TEST_ ))
|
||||||
#define METHOD_AS_TEST_CASE( method, ... )
|
#define METHOD_AS_TEST_CASE( method, ... )
|
||||||
|
#define TEST_CASE_PERSISTENT_FIXTURE( className, ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( CATCH2_INTERNAL_TEST_ ), __VA_ARGS__)
|
||||||
#define REGISTER_TEST_CASE( Function, ... ) (void)(0)
|
#define REGISTER_TEST_CASE( Function, ... ) (void)(0)
|
||||||
#define SECTION( ... )
|
#define SECTION( ... )
|
||||||
#define DYNAMIC_SECTION( ... )
|
#define DYNAMIC_SECTION( ... )
|
||||||
|
@@ -13,7 +13,7 @@ namespace Catch {
|
|||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
static auto getCurrentNanosecondsSinceEpoch() -> uint64_t {
|
static auto getCurrentNanosecondsSinceEpoch() -> uint64_t {
|
||||||
return std::chrono::duration_cast<std::chrono::nanoseconds>(std::chrono::high_resolution_clock::now().time_since_epoch()).count();
|
return std::chrono::duration_cast<std::chrono::nanoseconds>(std::chrono::steady_clock::now().time_since_epoch()).count();
|
||||||
}
|
}
|
||||||
} // end unnamed namespace
|
} // end unnamed namespace
|
||||||
|
|
||||||
|
@@ -54,13 +54,13 @@ namespace Detail {
|
|||||||
}
|
}
|
||||||
} // end unnamed namespace
|
} // end unnamed namespace
|
||||||
|
|
||||||
std::string convertIntoString(StringRef string, bool escape_invisibles) {
|
std::string convertIntoString(StringRef string, bool escapeInvisibles) {
|
||||||
std::string ret;
|
std::string ret;
|
||||||
// This is enough for the "don't escape invisibles" case, and a good
|
// This is enough for the "don't escape invisibles" case, and a good
|
||||||
// lower bound on the "escape invisibles" case.
|
// lower bound on the "escape invisibles" case.
|
||||||
ret.reserve(string.size() + 2);
|
ret.reserve(string.size() + 2);
|
||||||
|
|
||||||
if (!escape_invisibles) {
|
if (!escapeInvisibles) {
|
||||||
ret += '"';
|
ret += '"';
|
||||||
ret += string;
|
ret += string;
|
||||||
ret += '"';
|
ret += '"';
|
||||||
@@ -138,7 +138,7 @@ std::string StringMaker<char const*>::convert(char const* str) {
|
|||||||
return{ "{null string}" };
|
return{ "{null string}" };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
std::string StringMaker<char*>::convert(char* str) {
|
std::string StringMaker<char*>::convert(char* str) { // NOLINT(readability-non-const-parameter)
|
||||||
if (str) {
|
if (str) {
|
||||||
return Detail::convertIntoString( str );
|
return Detail::convertIntoString( str );
|
||||||
} else {
|
} else {
|
||||||
@@ -235,17 +235,17 @@ std::string StringMaker<signed char>::convert(signed char value) {
|
|||||||
std::string StringMaker<char>::convert(char c) {
|
std::string StringMaker<char>::convert(char c) {
|
||||||
return ::Catch::Detail::stringify(static_cast<signed char>(c));
|
return ::Catch::Detail::stringify(static_cast<signed char>(c));
|
||||||
}
|
}
|
||||||
std::string StringMaker<unsigned char>::convert(unsigned char c) {
|
std::string StringMaker<unsigned char>::convert(unsigned char value) {
|
||||||
return ::Catch::Detail::stringify(static_cast<char>(c));
|
return ::Catch::Detail::stringify(static_cast<char>(value));
|
||||||
}
|
}
|
||||||
|
|
||||||
int StringMaker<float>::precision = 5;
|
int StringMaker<float>::precision = std::numeric_limits<float>::max_digits10;
|
||||||
|
|
||||||
std::string StringMaker<float>::convert(float value) {
|
std::string StringMaker<float>::convert(float value) {
|
||||||
return Detail::fpToString(value, precision) + 'f';
|
return Detail::fpToString(value, precision) + 'f';
|
||||||
}
|
}
|
||||||
|
|
||||||
int StringMaker<double>::precision = 10;
|
int StringMaker<double>::precision = std::numeric_limits<double>::max_digits10;
|
||||||
|
|
||||||
std::string StringMaker<double>::convert(double value) {
|
std::string StringMaker<double>::convert(double value) {
|
||||||
return Detail::fpToString(value, precision);
|
return Detail::fpToString(value, precision);
|
||||||
|
@@ -279,11 +279,11 @@ namespace Catch {
|
|||||||
};
|
};
|
||||||
template<>
|
template<>
|
||||||
struct StringMaker<signed char> {
|
struct StringMaker<signed char> {
|
||||||
static std::string convert(signed char c);
|
static std::string convert(signed char value);
|
||||||
};
|
};
|
||||||
template<>
|
template<>
|
||||||
struct StringMaker<unsigned char> {
|
struct StringMaker<unsigned char> {
|
||||||
static std::string convert(unsigned char c);
|
static std::string convert(unsigned char value);
|
||||||
};
|
};
|
||||||
|
|
||||||
template<>
|
template<>
|
||||||
|
@@ -25,7 +25,7 @@ namespace Catch {
|
|||||||
class ExceptionTranslator : public IExceptionTranslator {
|
class ExceptionTranslator : public IExceptionTranslator {
|
||||||
public:
|
public:
|
||||||
|
|
||||||
ExceptionTranslator( std::string(*translateFunction)( T const& ) )
|
constexpr ExceptionTranslator( std::string(*translateFunction)( T const& ) )
|
||||||
: m_translateFunction( translateFunction )
|
: m_translateFunction( translateFunction )
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
@@ -36,7 +36,7 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Version const& libraryVersion() {
|
Version const& libraryVersion() {
|
||||||
static Version version( 3, 5, 0, "", 0 );
|
static Version version( 3, 7, 0, "", 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 5
|
#define CATCH_VERSION_MINOR 7
|
||||||
#define CATCH_VERSION_PATCH 0
|
#define CATCH_VERSION_PATCH 0
|
||||||
|
|
||||||
#endif // CATCH_VERSION_MACROS_HPP_INCLUDED
|
#endif // CATCH_VERSION_MACROS_HPP_INCLUDED
|
||||||
|
@@ -37,12 +37,6 @@ namespace Detail {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
~IGenerator() override = default;
|
|
||||||
IGenerator() = default;
|
|
||||||
IGenerator(IGenerator const&) = default;
|
|
||||||
IGenerator& operator=(IGenerator const&) = default;
|
|
||||||
|
|
||||||
|
|
||||||
// Returns the current element of the generator
|
// Returns the current element of the generator
|
||||||
//
|
//
|
||||||
// \Precondition The generator is either freshly constructed,
|
// \Precondition The generator is either freshly constructed,
|
||||||
|
@@ -8,7 +8,6 @@
|
|||||||
#ifndef CATCH_GENERATORS_RANDOM_HPP_INCLUDED
|
#ifndef CATCH_GENERATORS_RANDOM_HPP_INCLUDED
|
||||||
#define CATCH_GENERATORS_RANDOM_HPP_INCLUDED
|
#define CATCH_GENERATORS_RANDOM_HPP_INCLUDED
|
||||||
|
|
||||||
#include <catch2/internal/catch_context.hpp>
|
|
||||||
#include <catch2/generators/catch_generators.hpp>
|
#include <catch2/generators/catch_generators.hpp>
|
||||||
#include <catch2/internal/catch_random_number_generator.hpp>
|
#include <catch2/internal/catch_random_number_generator.hpp>
|
||||||
#include <catch2/internal/catch_uniform_integer_distribution.hpp>
|
#include <catch2/internal/catch_uniform_integer_distribution.hpp>
|
||||||
|
@@ -9,7 +9,6 @@
|
|||||||
#define CATCH_INTERFACES_CAPTURE_HPP_INCLUDED
|
#define CATCH_INTERFACES_CAPTURE_HPP_INCLUDED
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <chrono>
|
|
||||||
|
|
||||||
#include <catch2/internal/catch_stringref.hpp>
|
#include <catch2/internal/catch_stringref.hpp>
|
||||||
#include <catch2/internal/catch_result_type.hpp>
|
#include <catch2/internal/catch_result_type.hpp>
|
||||||
@@ -77,7 +76,7 @@ namespace Catch {
|
|||||||
virtual void handleMessage
|
virtual void handleMessage
|
||||||
( AssertionInfo const& info,
|
( AssertionInfo const& info,
|
||||||
ResultWas::OfType resultType,
|
ResultWas::OfType resultType,
|
||||||
StringRef message,
|
std::string&& message,
|
||||||
AssertionReaction& reaction ) = 0;
|
AssertionReaction& reaction ) = 0;
|
||||||
virtual void handleUnexpectedExceptionNotThrown
|
virtual void handleUnexpectedExceptionNotThrown
|
||||||
( AssertionInfo const& info,
|
( AssertionInfo const& info,
|
||||||
|
@@ -7,19 +7,11 @@
|
|||||||
// SPDX-License-Identifier: BSL-1.0
|
// SPDX-License-Identifier: BSL-1.0
|
||||||
#include <catch2/interfaces/catch_interfaces_reporter.hpp>
|
#include <catch2/interfaces/catch_interfaces_reporter.hpp>
|
||||||
#include <catch2/interfaces/catch_interfaces_config.hpp>
|
#include <catch2/interfaces/catch_interfaces_config.hpp>
|
||||||
#include <catch2/internal/catch_console_colour.hpp>
|
|
||||||
#include <catch2/internal/catch_console_width.hpp>
|
|
||||||
#include <catch2/catch_message.hpp>
|
#include <catch2/catch_message.hpp>
|
||||||
#include <catch2/internal/catch_list.hpp>
|
|
||||||
#include <catch2/internal/catch_string_manip.hpp>
|
|
||||||
#include <catch2/catch_test_case_info.hpp>
|
|
||||||
#include <catch2/reporters/catch_reporter_helpers.hpp>
|
|
||||||
#include <catch2/internal/catch_move_and_forward.hpp>
|
#include <catch2/internal/catch_move_and_forward.hpp>
|
||||||
#include <catch2/internal/catch_istream.hpp>
|
#include <catch2/internal/catch_istream.hpp>
|
||||||
|
|
||||||
#include <algorithm>
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <iomanip>
|
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
|
||||||
|
@@ -15,7 +15,6 @@
|
|||||||
#include <catch2/internal/catch_stringref.hpp>
|
#include <catch2/internal/catch_stringref.hpp>
|
||||||
#include <catch2/internal/catch_test_run_info.hpp>
|
#include <catch2/internal/catch_test_run_info.hpp>
|
||||||
#include <catch2/internal/catch_unique_ptr.hpp>
|
#include <catch2/internal/catch_unique_ptr.hpp>
|
||||||
#include <catch2/internal/catch_move_and_forward.hpp>
|
|
||||||
#include <catch2/benchmark/detail/catch_benchmark_stats.hpp>
|
#include <catch2/benchmark/detail/catch_benchmark_stats.hpp>
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
|
@@ -12,6 +12,8 @@ namespace Catch {
|
|||||||
|
|
||||||
class ITestInvoker {
|
class ITestInvoker {
|
||||||
public:
|
public:
|
||||||
|
virtual void prepareTestCase();
|
||||||
|
virtual void tearDownTestCase();
|
||||||
virtual void invoke() const = 0;
|
virtual void invoke() const = 0;
|
||||||
virtual ~ITestInvoker(); // = default
|
virtual ~ITestInvoker(); // = default
|
||||||
};
|
};
|
||||||
|
@@ -8,10 +8,8 @@
|
|||||||
#include <catch2/internal/catch_assertion_handler.hpp>
|
#include <catch2/internal/catch_assertion_handler.hpp>
|
||||||
#include <catch2/interfaces/catch_interfaces_config.hpp>
|
#include <catch2/interfaces/catch_interfaces_config.hpp>
|
||||||
#include <catch2/internal/catch_context.hpp>
|
#include <catch2/internal/catch_context.hpp>
|
||||||
#include <catch2/internal/catch_enforce.hpp>
|
|
||||||
#include <catch2/internal/catch_debugger.hpp>
|
#include <catch2/internal/catch_debugger.hpp>
|
||||||
#include <catch2/internal/catch_test_failure_exception.hpp>
|
#include <catch2/internal/catch_test_failure_exception.hpp>
|
||||||
#include <catch2/interfaces/catch_interfaces_registry_hub.hpp>
|
|
||||||
#include <catch2/matchers/catch_matchers_string.hpp>
|
#include <catch2/matchers/catch_matchers_string.hpp>
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
@@ -30,8 +28,8 @@ namespace Catch {
|
|||||||
void AssertionHandler::handleExpr( ITransientExpression const& expr ) {
|
void AssertionHandler::handleExpr( ITransientExpression const& expr ) {
|
||||||
m_resultCapture.handleExpr( m_assertionInfo, expr, m_reaction );
|
m_resultCapture.handleExpr( m_assertionInfo, expr, m_reaction );
|
||||||
}
|
}
|
||||||
void AssertionHandler::handleMessage(ResultWas::OfType resultType, StringRef message) {
|
void AssertionHandler::handleMessage(ResultWas::OfType resultType, std::string&& message) {
|
||||||
m_resultCapture.handleMessage( m_assertionInfo, resultType, message, m_reaction );
|
m_resultCapture.handleMessage( m_assertionInfo, resultType, CATCH_MOVE(message), m_reaction );
|
||||||
}
|
}
|
||||||
|
|
||||||
auto AssertionHandler::allowThrows() const -> bool {
|
auto AssertionHandler::allowThrows() const -> bool {
|
||||||
|
@@ -42,12 +42,12 @@ namespace Catch {
|
|||||||
|
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
void handleExpr( ExprLhs<T> const& expr ) {
|
constexpr void handleExpr( ExprLhs<T> const& expr ) {
|
||||||
handleExpr( expr.makeUnaryExpr() );
|
handleExpr( expr.makeUnaryExpr() );
|
||||||
}
|
}
|
||||||
void handleExpr( ITransientExpression const& expr );
|
void handleExpr( ITransientExpression const& expr );
|
||||||
|
|
||||||
void handleMessage(ResultWas::OfType resultType, StringRef message);
|
void handleMessage(ResultWas::OfType resultType, std::string&& message);
|
||||||
|
|
||||||
void handleExceptionThrownAsExpected();
|
void handleExceptionThrownAsExpected();
|
||||||
void handleUnexpectedExceptionNotThrown();
|
void handleUnexpectedExceptionNotThrown();
|
||||||
|
@@ -11,6 +11,7 @@
|
|||||||
#include <catch2/internal/catch_platform.hpp>
|
#include <catch2/internal/catch_platform.hpp>
|
||||||
#include <catch2/internal/catch_string_manip.hpp>
|
#include <catch2/internal/catch_string_manip.hpp>
|
||||||
#include <catch2/internal/catch_textflow.hpp>
|
#include <catch2/internal/catch_textflow.hpp>
|
||||||
|
#include <catch2/internal/catch_reusable_string_stream.hpp>
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <ostream>
|
#include <ostream>
|
||||||
@@ -24,13 +25,29 @@ namespace {
|
|||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string normaliseOpt( std::string const& optName ) {
|
Catch::StringRef normaliseOpt( Catch::StringRef optName ) {
|
||||||
#ifdef CATCH_PLATFORM_WINDOWS
|
if ( optName[0] == '-'
|
||||||
if ( optName[0] == '/' )
|
#if defined(CATCH_PLATFORM_WINDOWS)
|
||||||
return "-" + optName.substr( 1 );
|
|| optName[0] == '/'
|
||||||
else
|
|
||||||
#endif
|
#endif
|
||||||
return optName;
|
) {
|
||||||
|
return optName.substr( 1, optName.size() );
|
||||||
|
}
|
||||||
|
|
||||||
|
return optName;
|
||||||
|
}
|
||||||
|
|
||||||
|
static size_t find_first_separator(Catch::StringRef sr) {
|
||||||
|
auto is_separator = []( char c ) {
|
||||||
|
return c == ' ' || c == ':' || c == '=';
|
||||||
|
};
|
||||||
|
size_t pos = 0;
|
||||||
|
while (pos < sr.size()) {
|
||||||
|
if (is_separator(sr[pos])) { return pos; }
|
||||||
|
++pos;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Catch::StringRef::npos;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
@@ -48,23 +65,23 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ( it != itEnd ) {
|
if ( it != itEnd ) {
|
||||||
auto const& next = *it;
|
StringRef next = *it;
|
||||||
if ( isOptPrefix( next[0] ) ) {
|
if ( isOptPrefix( next[0] ) ) {
|
||||||
auto delimiterPos = next.find_first_of( " :=" );
|
auto delimiterPos = find_first_separator(next);
|
||||||
if ( delimiterPos != std::string::npos ) {
|
if ( delimiterPos != StringRef::npos ) {
|
||||||
m_tokenBuffer.push_back(
|
m_tokenBuffer.push_back(
|
||||||
{ TokenType::Option,
|
{ TokenType::Option,
|
||||||
next.substr( 0, delimiterPos ) } );
|
next.substr( 0, delimiterPos ) } );
|
||||||
m_tokenBuffer.push_back(
|
m_tokenBuffer.push_back(
|
||||||
{ TokenType::Argument,
|
{ TokenType::Argument,
|
||||||
next.substr( delimiterPos + 1 ) } );
|
next.substr( delimiterPos + 1, next.size() ) } );
|
||||||
} else {
|
} else {
|
||||||
if ( next[1] != '-' && next.size() > 2 ) {
|
if ( next.size() > 1 && next[1] != '-' && next.size() > 2 ) {
|
||||||
std::string opt = "- ";
|
// Combined short args, e.g. "-ab" for "-a -b"
|
||||||
for ( size_t i = 1; i < next.size(); ++i ) {
|
for ( size_t i = 1; i < next.size(); ++i ) {
|
||||||
opt[1] = next[i];
|
|
||||||
m_tokenBuffer.push_back(
|
m_tokenBuffer.push_back(
|
||||||
{ TokenType::Option, opt } );
|
{ TokenType::Option,
|
||||||
|
next.substr( i, 1 ) } );
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
m_tokenBuffer.push_back(
|
m_tokenBuffer.push_back(
|
||||||
@@ -124,12 +141,12 @@ namespace Catch {
|
|||||||
size_t ParserBase::cardinality() const { return 1; }
|
size_t ParserBase::cardinality() const { return 1; }
|
||||||
|
|
||||||
InternalParseResult ParserBase::parse( Args const& args ) const {
|
InternalParseResult ParserBase::parse( Args const& args ) const {
|
||||||
return parse( args.exeName(), TokenStream( args ) );
|
return parse( static_cast<std::string>(args.exeName()), TokenStream( args ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
ParseState::ParseState( ParseResultType type,
|
ParseState::ParseState( ParseResultType type,
|
||||||
TokenStream const& remainingTokens ):
|
TokenStream remainingTokens ):
|
||||||
m_type( type ), m_remainingTokens( remainingTokens ) {}
|
m_type( type ), m_remainingTokens( CATCH_MOVE(remainingTokens) ) {}
|
||||||
|
|
||||||
ParserResult BoundFlagRef::setFlag( bool flag ) {
|
ParserResult BoundFlagRef::setFlag( bool flag ) {
|
||||||
m_ref = flag;
|
m_ref = flag;
|
||||||
@@ -147,34 +164,34 @@ namespace Catch {
|
|||||||
} // namespace Detail
|
} // namespace Detail
|
||||||
|
|
||||||
Detail::InternalParseResult Arg::parse(std::string const&,
|
Detail::InternalParseResult Arg::parse(std::string const&,
|
||||||
Detail::TokenStream const& tokens) const {
|
Detail::TokenStream tokens) const {
|
||||||
auto validationResult = validate();
|
auto validationResult = validate();
|
||||||
if (!validationResult)
|
if (!validationResult)
|
||||||
return Detail::InternalParseResult(validationResult);
|
return Detail::InternalParseResult(validationResult);
|
||||||
|
|
||||||
auto remainingTokens = tokens;
|
auto token = *tokens;
|
||||||
auto const& token = *remainingTokens;
|
|
||||||
if (token.type != Detail::TokenType::Argument)
|
if (token.type != Detail::TokenType::Argument)
|
||||||
return Detail::InternalParseResult::ok(Detail::ParseState(
|
return Detail::InternalParseResult::ok(Detail::ParseState(
|
||||||
ParseResultType::NoMatch, remainingTokens));
|
ParseResultType::NoMatch, CATCH_MOVE(tokens)));
|
||||||
|
|
||||||
assert(!m_ref->isFlag());
|
assert(!m_ref->isFlag());
|
||||||
auto valueRef =
|
auto valueRef =
|
||||||
static_cast<Detail::BoundValueRefBase*>(m_ref.get());
|
static_cast<Detail::BoundValueRefBase*>(m_ref.get());
|
||||||
|
|
||||||
auto result = valueRef->setValue(remainingTokens->token);
|
auto result = valueRef->setValue(static_cast<std::string>(token.token));
|
||||||
if (!result)
|
if ( !result )
|
||||||
return Detail::InternalParseResult(result);
|
return Detail::InternalParseResult( result );
|
||||||
else
|
else
|
||||||
return Detail::InternalParseResult::ok(Detail::ParseState(
|
return Detail::InternalParseResult::ok(
|
||||||
ParseResultType::Matched, ++remainingTokens));
|
Detail::ParseState( ParseResultType::Matched,
|
||||||
|
CATCH_MOVE( ++tokens ) ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
Opt::Opt(bool& ref) :
|
Opt::Opt(bool& ref) :
|
||||||
ParserRefImpl(std::make_shared<Detail::BoundFlagRef>(ref)) {}
|
ParserRefImpl(std::make_shared<Detail::BoundFlagRef>(ref)) {}
|
||||||
|
|
||||||
std::vector<Detail::HelpColumns> Opt::getHelpColumns() const {
|
Detail::HelpColumns Opt::getHelpColumns() const {
|
||||||
std::ostringstream oss;
|
ReusableStringStream oss;
|
||||||
bool first = true;
|
bool first = true;
|
||||||
for (auto const& opt : m_optNames) {
|
for (auto const& opt : m_optNames) {
|
||||||
if (first)
|
if (first)
|
||||||
@@ -185,10 +202,10 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
if (!m_hint.empty())
|
if (!m_hint.empty())
|
||||||
oss << " <" << m_hint << '>';
|
oss << " <" << m_hint << '>';
|
||||||
return { { oss.str(), m_description } };
|
return { oss.str(), m_description };
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Opt::isMatch(std::string const& optToken) const {
|
bool Opt::isMatch(StringRef optToken) const {
|
||||||
auto normalisedToken = normaliseOpt(optToken);
|
auto normalisedToken = normaliseOpt(optToken);
|
||||||
for (auto const& name : m_optNames) {
|
for (auto const& name : m_optNames) {
|
||||||
if (normaliseOpt(name) == normalisedToken)
|
if (normaliseOpt(name) == normalisedToken)
|
||||||
@@ -198,15 +215,14 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Detail::InternalParseResult Opt::parse(std::string const&,
|
Detail::InternalParseResult Opt::parse(std::string const&,
|
||||||
Detail::TokenStream const& tokens) const {
|
Detail::TokenStream tokens) const {
|
||||||
auto validationResult = validate();
|
auto validationResult = validate();
|
||||||
if (!validationResult)
|
if (!validationResult)
|
||||||
return Detail::InternalParseResult(validationResult);
|
return Detail::InternalParseResult(validationResult);
|
||||||
|
|
||||||
auto remainingTokens = tokens;
|
if (tokens &&
|
||||||
if (remainingTokens &&
|
tokens->type == Detail::TokenType::Option) {
|
||||||
remainingTokens->type == Detail::TokenType::Option) {
|
auto const& token = *tokens;
|
||||||
auto const& token = *remainingTokens;
|
|
||||||
if (isMatch(token.token)) {
|
if (isMatch(token.token)) {
|
||||||
if (m_ref->isFlag()) {
|
if (m_ref->isFlag()) {
|
||||||
auto flagRef =
|
auto flagRef =
|
||||||
@@ -218,35 +234,35 @@ namespace Catch {
|
|||||||
if (result.value() ==
|
if (result.value() ==
|
||||||
ParseResultType::ShortCircuitAll)
|
ParseResultType::ShortCircuitAll)
|
||||||
return Detail::InternalParseResult::ok(Detail::ParseState(
|
return Detail::InternalParseResult::ok(Detail::ParseState(
|
||||||
result.value(), remainingTokens));
|
result.value(), CATCH_MOVE(tokens)));
|
||||||
} else {
|
} else {
|
||||||
auto valueRef =
|
auto valueRef =
|
||||||
static_cast<Detail::BoundValueRefBase*>(
|
static_cast<Detail::BoundValueRefBase*>(
|
||||||
m_ref.get());
|
m_ref.get());
|
||||||
++remainingTokens;
|
++tokens;
|
||||||
if (!remainingTokens)
|
if (!tokens)
|
||||||
return Detail::InternalParseResult::runtimeError(
|
return Detail::InternalParseResult::runtimeError(
|
||||||
"Expected argument following " +
|
"Expected argument following " +
|
||||||
token.token);
|
token.token);
|
||||||
auto const& argToken = *remainingTokens;
|
auto const& argToken = *tokens;
|
||||||
if (argToken.type != Detail::TokenType::Argument)
|
if (argToken.type != Detail::TokenType::Argument)
|
||||||
return Detail::InternalParseResult::runtimeError(
|
return Detail::InternalParseResult::runtimeError(
|
||||||
"Expected argument following " +
|
"Expected argument following " +
|
||||||
token.token);
|
token.token);
|
||||||
const auto result = valueRef->setValue(argToken.token);
|
const auto result = valueRef->setValue(static_cast<std::string>(argToken.token));
|
||||||
if (!result)
|
if (!result)
|
||||||
return Detail::InternalParseResult(result);
|
return Detail::InternalParseResult(result);
|
||||||
if (result.value() ==
|
if (result.value() ==
|
||||||
ParseResultType::ShortCircuitAll)
|
ParseResultType::ShortCircuitAll)
|
||||||
return Detail::InternalParseResult::ok(Detail::ParseState(
|
return Detail::InternalParseResult::ok(Detail::ParseState(
|
||||||
result.value(), remainingTokens));
|
result.value(), CATCH_MOVE(tokens)));
|
||||||
}
|
}
|
||||||
return Detail::InternalParseResult::ok(Detail::ParseState(
|
return Detail::InternalParseResult::ok(Detail::ParseState(
|
||||||
ParseResultType::Matched, ++remainingTokens));
|
ParseResultType::Matched, CATCH_MOVE(++tokens)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return Detail::InternalParseResult::ok(
|
return Detail::InternalParseResult::ok(
|
||||||
Detail::ParseState(ParseResultType::NoMatch, remainingTokens));
|
Detail::ParseState(ParseResultType::NoMatch, CATCH_MOVE(tokens)));
|
||||||
}
|
}
|
||||||
|
|
||||||
Detail::Result Opt::validate() const {
|
Detail::Result Opt::validate() const {
|
||||||
@@ -278,9 +294,9 @@ namespace Catch {
|
|||||||
|
|
||||||
Detail::InternalParseResult
|
Detail::InternalParseResult
|
||||||
ExeName::parse(std::string const&,
|
ExeName::parse(std::string const&,
|
||||||
Detail::TokenStream const& tokens) const {
|
Detail::TokenStream tokens) const {
|
||||||
return Detail::InternalParseResult::ok(
|
return Detail::InternalParseResult::ok(
|
||||||
Detail::ParseState(ParseResultType::NoMatch, tokens));
|
Detail::ParseState(ParseResultType::NoMatch, CATCH_MOVE(tokens)));
|
||||||
}
|
}
|
||||||
|
|
||||||
ParserResult ExeName::set(std::string const& newName) {
|
ParserResult ExeName::set(std::string const& newName) {
|
||||||
@@ -310,9 +326,9 @@ namespace Catch {
|
|||||||
|
|
||||||
std::vector<Detail::HelpColumns> Parser::getHelpColumns() const {
|
std::vector<Detail::HelpColumns> Parser::getHelpColumns() const {
|
||||||
std::vector<Detail::HelpColumns> cols;
|
std::vector<Detail::HelpColumns> cols;
|
||||||
|
cols.reserve( m_options.size() );
|
||||||
for ( auto const& o : m_options ) {
|
for ( auto const& o : m_options ) {
|
||||||
auto childCols = o.getHelpColumns();
|
cols.push_back(o.getHelpColumns());
|
||||||
cols.insert( cols.end(), childCols.begin(), childCols.end() );
|
|
||||||
}
|
}
|
||||||
return cols;
|
return cols;
|
||||||
}
|
}
|
||||||
@@ -350,12 +366,12 @@ namespace Catch {
|
|||||||
|
|
||||||
optWidth = ( std::min )( optWidth, consoleWidth / 2 );
|
optWidth = ( std::min )( optWidth, consoleWidth / 2 );
|
||||||
|
|
||||||
for ( auto const& cols : rows ) {
|
for ( auto& cols : rows ) {
|
||||||
auto row = TextFlow::Column( cols.left )
|
auto row = TextFlow::Column( CATCH_MOVE(cols.left) )
|
||||||
.width( optWidth )
|
.width( optWidth )
|
||||||
.indent( 2 ) +
|
.indent( 2 ) +
|
||||||
TextFlow::Spacer( 4 ) +
|
TextFlow::Spacer( 4 ) +
|
||||||
TextFlow::Column( cols.right )
|
TextFlow::Column( static_cast<std::string>(cols.descriptions) )
|
||||||
.width( consoleWidth - 7 - optWidth );
|
.width( consoleWidth - 7 - optWidth );
|
||||||
os << row << '\n';
|
os << row << '\n';
|
||||||
}
|
}
|
||||||
@@ -377,7 +393,7 @@ namespace Catch {
|
|||||||
|
|
||||||
Detail::InternalParseResult
|
Detail::InternalParseResult
|
||||||
Parser::parse( std::string const& exeName,
|
Parser::parse( std::string const& exeName,
|
||||||
Detail::TokenStream const& tokens ) const {
|
Detail::TokenStream tokens ) const {
|
||||||
|
|
||||||
struct ParserInfo {
|
struct ParserInfo {
|
||||||
ParserBase const* parser = nullptr;
|
ParserBase const* parser = nullptr;
|
||||||
@@ -395,7 +411,7 @@ namespace Catch {
|
|||||||
m_exeName.set( exeName );
|
m_exeName.set( exeName );
|
||||||
|
|
||||||
auto result = Detail::InternalParseResult::ok(
|
auto result = Detail::InternalParseResult::ok(
|
||||||
Detail::ParseState( ParseResultType::NoMatch, tokens ) );
|
Detail::ParseState( ParseResultType::NoMatch, CATCH_MOVE(tokens) ) );
|
||||||
while ( result.value().remainingTokens() ) {
|
while ( result.value().remainingTokens() ) {
|
||||||
bool tokenParsed = false;
|
bool tokenParsed = false;
|
||||||
|
|
||||||
@@ -403,7 +419,7 @@ namespace Catch {
|
|||||||
if ( parseInfo.parser->cardinality() == 0 ||
|
if ( parseInfo.parser->cardinality() == 0 ||
|
||||||
parseInfo.count < parseInfo.parser->cardinality() ) {
|
parseInfo.count < parseInfo.parser->cardinality() ) {
|
||||||
result = parseInfo.parser->parse(
|
result = parseInfo.parser->parse(
|
||||||
exeName, result.value().remainingTokens() );
|
exeName, CATCH_MOVE(result).value().remainingTokens() );
|
||||||
if ( !result )
|
if ( !result )
|
||||||
return result;
|
return result;
|
||||||
if ( result.value().type() !=
|
if ( result.value().type() !=
|
||||||
@@ -429,7 +445,7 @@ namespace Catch {
|
|||||||
Args::Args(int argc, char const* const* argv) :
|
Args::Args(int argc, char const* const* argv) :
|
||||||
m_exeName(argv[0]), m_args(argv + 1, argv + argc) {}
|
m_exeName(argv[0]), m_args(argv + 1, argv + argc) {}
|
||||||
|
|
||||||
Args::Args(std::initializer_list<std::string> args) :
|
Args::Args(std::initializer_list<StringRef> args) :
|
||||||
m_exeName(*args.begin()),
|
m_exeName(*args.begin()),
|
||||||
m_args(args.begin() + 1, args.end()) {}
|
m_args(args.begin() + 1, args.end()) {}
|
||||||
|
|
||||||
|
@@ -29,6 +29,7 @@
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <catch2/internal/catch_stringref.hpp>
|
||||||
#include <catch2/internal/catch_move_and_forward.hpp>
|
#include <catch2/internal/catch_move_and_forward.hpp>
|
||||||
#include <catch2/internal/catch_noncopyable.hpp>
|
#include <catch2/internal/catch_noncopyable.hpp>
|
||||||
#include <catch2/internal/catch_void_type.hpp>
|
#include <catch2/internal/catch_void_type.hpp>
|
||||||
@@ -101,17 +102,16 @@ namespace Catch {
|
|||||||
enum class TokenType { Option, Argument };
|
enum class TokenType { Option, Argument };
|
||||||
struct Token {
|
struct Token {
|
||||||
TokenType type;
|
TokenType type;
|
||||||
std::string token;
|
StringRef token;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Abstracts iterators into args as a stream of tokens, with option
|
// Abstracts iterators into args as a stream of tokens, with option
|
||||||
// arguments uniformly handled
|
// arguments uniformly handled
|
||||||
class TokenStream {
|
class TokenStream {
|
||||||
using Iterator = std::vector<std::string>::const_iterator;
|
using Iterator = std::vector<StringRef>::const_iterator;
|
||||||
Iterator it;
|
Iterator it;
|
||||||
Iterator itEnd;
|
Iterator itEnd;
|
||||||
std::vector<Token> m_tokenBuffer;
|
std::vector<Token> m_tokenBuffer;
|
||||||
|
|
||||||
void loadBuffer();
|
void loadBuffer();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@@ -163,12 +163,17 @@ namespace Catch {
|
|||||||
ResultType m_type;
|
ResultType m_type;
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename T> class ResultValueBase : public ResultBase {
|
template <typename T>
|
||||||
|
class ResultValueBase : public ResultBase {
|
||||||
public:
|
public:
|
||||||
auto value() const -> T const& {
|
T const& value() const& {
|
||||||
enforceOk();
|
enforceOk();
|
||||||
return m_value;
|
return m_value;
|
||||||
}
|
}
|
||||||
|
T&& value() && {
|
||||||
|
enforceOk();
|
||||||
|
return CATCH_MOVE( m_value );
|
||||||
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
ResultValueBase( ResultType type ): ResultBase( type ) {}
|
ResultValueBase( ResultType type ): ResultBase( type ) {}
|
||||||
@@ -178,13 +183,23 @@ namespace Catch {
|
|||||||
if ( m_type == ResultType::Ok )
|
if ( m_type == ResultType::Ok )
|
||||||
new ( &m_value ) T( other.m_value );
|
new ( &m_value ) T( other.m_value );
|
||||||
}
|
}
|
||||||
|
ResultValueBase( ResultValueBase&& other ):
|
||||||
ResultValueBase( ResultType, T const& value ): ResultBase( ResultType::Ok ) {
|
ResultBase( other ) {
|
||||||
new ( &m_value ) T( value );
|
if ( m_type == ResultType::Ok )
|
||||||
|
new ( &m_value ) T( CATCH_MOVE(other.m_value) );
|
||||||
}
|
}
|
||||||
|
|
||||||
auto operator=( ResultValueBase const& other )
|
|
||||||
-> ResultValueBase& {
|
ResultValueBase( ResultType, T const& value ):
|
||||||
|
ResultBase( ResultType::Ok ) {
|
||||||
|
new ( &m_value ) T( value );
|
||||||
|
}
|
||||||
|
ResultValueBase( ResultType, T&& value ):
|
||||||
|
ResultBase( ResultType::Ok ) {
|
||||||
|
new ( &m_value ) T( CATCH_MOVE(value) );
|
||||||
|
}
|
||||||
|
|
||||||
|
ResultValueBase& operator=( ResultValueBase const& other ) {
|
||||||
if ( m_type == ResultType::Ok )
|
if ( m_type == ResultType::Ok )
|
||||||
m_value.~T();
|
m_value.~T();
|
||||||
ResultBase::operator=( other );
|
ResultBase::operator=( other );
|
||||||
@@ -192,6 +207,14 @@ namespace Catch {
|
|||||||
new ( &m_value ) T( other.m_value );
|
new ( &m_value ) T( other.m_value );
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
ResultValueBase& operator=( ResultValueBase&& other ) {
|
||||||
|
if ( m_type == ResultType::Ok ) m_value.~T();
|
||||||
|
ResultBase::operator=( other );
|
||||||
|
if ( m_type == ResultType::Ok )
|
||||||
|
new ( &m_value ) T( CATCH_MOVE(other.m_value) );
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
~ResultValueBase() override {
|
~ResultValueBase() override {
|
||||||
if ( m_type == ResultType::Ok )
|
if ( m_type == ResultType::Ok )
|
||||||
@@ -219,8 +242,8 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename U>
|
template <typename U>
|
||||||
static auto ok( U const& value ) -> BasicResult {
|
static auto ok( U&& value ) -> BasicResult {
|
||||||
return { ResultType::Ok, value };
|
return { ResultType::Ok, CATCH_FORWARD(value) };
|
||||||
}
|
}
|
||||||
static auto ok() -> BasicResult { return { ResultType::Ok }; }
|
static auto ok() -> BasicResult { return { ResultType::Ok }; }
|
||||||
static auto logicError( std::string&& message )
|
static auto logicError( std::string&& message )
|
||||||
@@ -267,12 +290,15 @@ namespace Catch {
|
|||||||
class ParseState {
|
class ParseState {
|
||||||
public:
|
public:
|
||||||
ParseState( ParseResultType type,
|
ParseState( ParseResultType type,
|
||||||
TokenStream const& remainingTokens );
|
TokenStream remainingTokens );
|
||||||
|
|
||||||
ParseResultType type() const { return m_type; }
|
ParseResultType type() const { return m_type; }
|
||||||
TokenStream const& remainingTokens() const {
|
TokenStream const& remainingTokens() const& {
|
||||||
return m_remainingTokens;
|
return m_remainingTokens;
|
||||||
}
|
}
|
||||||
|
TokenStream&& remainingTokens() && {
|
||||||
|
return CATCH_MOVE( m_remainingTokens );
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
ParseResultType m_type;
|
ParseResultType m_type;
|
||||||
@@ -285,7 +311,7 @@ namespace Catch {
|
|||||||
|
|
||||||
struct HelpColumns {
|
struct HelpColumns {
|
||||||
std::string left;
|
std::string left;
|
||||||
std::string right;
|
StringRef descriptions;
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
@@ -445,7 +471,7 @@ namespace Catch {
|
|||||||
virtual ~ParserBase() = default;
|
virtual ~ParserBase() = default;
|
||||||
virtual auto validate() const -> Result { return Result::ok(); }
|
virtual auto validate() const -> Result { return Result::ok(); }
|
||||||
virtual auto parse( std::string const& exeName,
|
virtual auto parse( std::string const& exeName,
|
||||||
TokenStream const& tokens ) const
|
TokenStream tokens ) const
|
||||||
-> InternalParseResult = 0;
|
-> InternalParseResult = 0;
|
||||||
virtual size_t cardinality() const;
|
virtual size_t cardinality() const;
|
||||||
|
|
||||||
@@ -465,8 +491,8 @@ namespace Catch {
|
|||||||
protected:
|
protected:
|
||||||
Optionality m_optionality = Optionality::Optional;
|
Optionality m_optionality = Optionality::Optional;
|
||||||
std::shared_ptr<BoundRef> m_ref;
|
std::shared_ptr<BoundRef> m_ref;
|
||||||
std::string m_hint;
|
StringRef m_hint;
|
||||||
std::string m_description;
|
StringRef m_description;
|
||||||
|
|
||||||
explicit ParserRefImpl( std::shared_ptr<BoundRef> const& ref ):
|
explicit ParserRefImpl( std::shared_ptr<BoundRef> const& ref ):
|
||||||
m_ref( ref ) {}
|
m_ref( ref ) {}
|
||||||
@@ -475,28 +501,32 @@ namespace Catch {
|
|||||||
template <typename LambdaT>
|
template <typename LambdaT>
|
||||||
ParserRefImpl( accept_many_t,
|
ParserRefImpl( accept_many_t,
|
||||||
LambdaT const& ref,
|
LambdaT const& ref,
|
||||||
std::string const& hint ):
|
StringRef hint ):
|
||||||
m_ref( std::make_shared<BoundManyLambda<LambdaT>>( ref ) ),
|
m_ref( std::make_shared<BoundManyLambda<LambdaT>>( ref ) ),
|
||||||
m_hint( hint ) {}
|
m_hint( hint ) {}
|
||||||
|
|
||||||
template <typename T,
|
template <typename T,
|
||||||
typename = typename std::enable_if_t<
|
typename = typename std::enable_if_t<
|
||||||
!Detail::is_unary_function<T>::value>>
|
!Detail::is_unary_function<T>::value>>
|
||||||
ParserRefImpl( T& ref, std::string const& hint ):
|
ParserRefImpl( T& ref, StringRef hint ):
|
||||||
m_ref( std::make_shared<BoundValueRef<T>>( ref ) ),
|
m_ref( std::make_shared<BoundValueRef<T>>( ref ) ),
|
||||||
m_hint( hint ) {}
|
m_hint( hint ) {}
|
||||||
|
|
||||||
template <typename LambdaT,
|
template <typename LambdaT,
|
||||||
typename = typename std::enable_if_t<
|
typename = typename std::enable_if_t<
|
||||||
Detail::is_unary_function<LambdaT>::value>>
|
Detail::is_unary_function<LambdaT>::value>>
|
||||||
ParserRefImpl( LambdaT const& ref, std::string const& hint ):
|
ParserRefImpl( LambdaT const& ref, StringRef hint ):
|
||||||
m_ref( std::make_shared<BoundLambda<LambdaT>>( ref ) ),
|
m_ref( std::make_shared<BoundLambda<LambdaT>>( ref ) ),
|
||||||
m_hint( hint ) {}
|
m_hint( hint ) {}
|
||||||
|
|
||||||
auto operator()( std::string const& description ) -> DerivedT& {
|
DerivedT& operator()( StringRef description ) & {
|
||||||
m_description = description;
|
m_description = description;
|
||||||
return static_cast<DerivedT&>( *this );
|
return static_cast<DerivedT&>( *this );
|
||||||
}
|
}
|
||||||
|
DerivedT&& operator()( StringRef description ) && {
|
||||||
|
m_description = description;
|
||||||
|
return static_cast<DerivedT&&>( *this );
|
||||||
|
}
|
||||||
|
|
||||||
auto optional() -> DerivedT& {
|
auto optional() -> DerivedT& {
|
||||||
m_optionality = Optionality::Optional;
|
m_optionality = Optionality::Optional;
|
||||||
@@ -519,7 +549,7 @@ namespace Catch {
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string const& hint() const { return m_hint; }
|
StringRef hint() const { return m_hint; }
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace detail
|
} // namespace detail
|
||||||
@@ -533,13 +563,13 @@ namespace Catch {
|
|||||||
|
|
||||||
Detail::InternalParseResult
|
Detail::InternalParseResult
|
||||||
parse(std::string const&,
|
parse(std::string const&,
|
||||||
Detail::TokenStream const& tokens) const override;
|
Detail::TokenStream tokens) const override;
|
||||||
};
|
};
|
||||||
|
|
||||||
// A parser for options
|
// A parser for options
|
||||||
class Opt : public Detail::ParserRefImpl<Opt> {
|
class Opt : public Detail::ParserRefImpl<Opt> {
|
||||||
protected:
|
protected:
|
||||||
std::vector<std::string> m_optNames;
|
std::vector<StringRef> m_optNames;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
template <typename LambdaT>
|
template <typename LambdaT>
|
||||||
@@ -552,33 +582,37 @@ namespace Catch {
|
|||||||
template <typename LambdaT,
|
template <typename LambdaT,
|
||||||
typename = typename std::enable_if_t<
|
typename = typename std::enable_if_t<
|
||||||
Detail::is_unary_function<LambdaT>::value>>
|
Detail::is_unary_function<LambdaT>::value>>
|
||||||
Opt( LambdaT const& ref, std::string const& hint ):
|
Opt( LambdaT const& ref, StringRef hint ):
|
||||||
ParserRefImpl( ref, hint ) {}
|
ParserRefImpl( ref, hint ) {}
|
||||||
|
|
||||||
template <typename LambdaT>
|
template <typename LambdaT>
|
||||||
Opt( accept_many_t, LambdaT const& ref, std::string const& hint ):
|
Opt( accept_many_t, LambdaT const& ref, StringRef hint ):
|
||||||
ParserRefImpl( accept_many, ref, hint ) {}
|
ParserRefImpl( accept_many, ref, hint ) {}
|
||||||
|
|
||||||
template <typename T,
|
template <typename T,
|
||||||
typename = typename std::enable_if_t<
|
typename = typename std::enable_if_t<
|
||||||
!Detail::is_unary_function<T>::value>>
|
!Detail::is_unary_function<T>::value>>
|
||||||
Opt( T& ref, std::string const& hint ):
|
Opt( T& ref, StringRef hint ):
|
||||||
ParserRefImpl( ref, hint ) {}
|
ParserRefImpl( ref, hint ) {}
|
||||||
|
|
||||||
auto operator[](std::string const& optName) -> Opt& {
|
Opt& operator[]( StringRef optName ) & {
|
||||||
m_optNames.push_back(optName);
|
m_optNames.push_back(optName);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
Opt&& operator[]( StringRef optName ) && {
|
||||||
|
m_optNames.push_back( optName );
|
||||||
|
return CATCH_MOVE(*this);
|
||||||
|
}
|
||||||
|
|
||||||
std::vector<Detail::HelpColumns> getHelpColumns() const;
|
Detail::HelpColumns getHelpColumns() const;
|
||||||
|
|
||||||
bool isMatch(std::string const& optToken) const;
|
bool isMatch(StringRef optToken) const;
|
||||||
|
|
||||||
using ParserBase::parse;
|
using ParserBase::parse;
|
||||||
|
|
||||||
Detail::InternalParseResult
|
Detail::InternalParseResult
|
||||||
parse(std::string const&,
|
parse(std::string const&,
|
||||||
Detail::TokenStream const& tokens) const override;
|
Detail::TokenStream tokens) const override;
|
||||||
|
|
||||||
Detail::Result validate() const override;
|
Detail::Result validate() const override;
|
||||||
};
|
};
|
||||||
@@ -601,7 +635,7 @@ namespace Catch {
|
|||||||
// handled specially
|
// handled specially
|
||||||
Detail::InternalParseResult
|
Detail::InternalParseResult
|
||||||
parse(std::string const&,
|
parse(std::string const&,
|
||||||
Detail::TokenStream const& tokens) const override;
|
Detail::TokenStream tokens) const override;
|
||||||
|
|
||||||
std::string const& name() const { return *m_name; }
|
std::string const& name() const { return *m_name; }
|
||||||
Detail::ParserResult set(std::string const& newName);
|
Detail::ParserResult set(std::string const& newName);
|
||||||
@@ -626,16 +660,28 @@ namespace Catch {
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto operator|=(Opt const& opt) -> Parser& {
|
friend Parser& operator|=( Parser& p, Opt const& opt ) {
|
||||||
m_options.push_back(opt);
|
p.m_options.push_back( opt );
|
||||||
return *this;
|
return p;
|
||||||
|
}
|
||||||
|
friend Parser& operator|=( Parser& p, Opt&& opt ) {
|
||||||
|
p.m_options.push_back( CATCH_MOVE(opt) );
|
||||||
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
Parser& operator|=(Parser const& other);
|
Parser& operator|=(Parser const& other);
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
auto operator|(T const& other) const -> Parser {
|
friend Parser operator|( Parser const& p, T&& rhs ) {
|
||||||
return Parser(*this) |= other;
|
Parser temp( p );
|
||||||
|
temp |= rhs;
|
||||||
|
return temp;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
friend Parser operator|( Parser&& p, T&& rhs ) {
|
||||||
|
p |= CATCH_FORWARD(rhs);
|
||||||
|
return CATCH_MOVE(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<Detail::HelpColumns> getHelpColumns() const;
|
std::vector<Detail::HelpColumns> getHelpColumns() const;
|
||||||
@@ -653,21 +699,23 @@ namespace Catch {
|
|||||||
using ParserBase::parse;
|
using ParserBase::parse;
|
||||||
Detail::InternalParseResult
|
Detail::InternalParseResult
|
||||||
parse(std::string const& exeName,
|
parse(std::string const& exeName,
|
||||||
Detail::TokenStream const& tokens) const override;
|
Detail::TokenStream tokens) const override;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Transport for raw args (copied from main args, or supplied via
|
/**
|
||||||
// init list for testing)
|
* Wrapper over argc + argv, assumes that the inputs outlive it
|
||||||
|
*/
|
||||||
class Args {
|
class Args {
|
||||||
friend Detail::TokenStream;
|
friend Detail::TokenStream;
|
||||||
std::string m_exeName;
|
StringRef m_exeName;
|
||||||
std::vector<std::string> m_args;
|
std::vector<StringRef> m_args;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Args(int argc, char const* const* argv);
|
Args(int argc, char const* const* argv);
|
||||||
Args(std::initializer_list<std::string> args);
|
// Helper constructor for testing
|
||||||
|
Args(std::initializer_list<StringRef> args);
|
||||||
|
|
||||||
std::string const& exeName() const { return m_exeName; }
|
StringRef exeName() const { return m_exeName; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
#include <catch2/catch_config.hpp>
|
#include <catch2/catch_config.hpp>
|
||||||
#include <catch2/internal/catch_string_manip.hpp>
|
#include <catch2/internal/catch_string_manip.hpp>
|
||||||
|
#include <catch2/interfaces/catch_interfaces_config.hpp>
|
||||||
#include <catch2/interfaces/catch_interfaces_registry_hub.hpp>
|
#include <catch2/interfaces/catch_interfaces_registry_hub.hpp>
|
||||||
#include <catch2/internal/catch_reporter_registry.hpp>
|
#include <catch2/internal/catch_reporter_registry.hpp>
|
||||||
#include <catch2/internal/catch_console_colour.hpp>
|
#include <catch2/internal/catch_console_colour.hpp>
|
||||||
@@ -46,7 +47,7 @@ namespace Catch {
|
|||||||
line = trim(line);
|
line = trim(line);
|
||||||
if( !line.empty() && !startsWith( line, '#' ) ) {
|
if( !line.empty() && !startsWith( line, '#' ) ) {
|
||||||
if( !startsWith( line, '"' ) )
|
if( !startsWith( line, '"' ) )
|
||||||
line = '"' + line + '"';
|
line = '"' + CATCH_MOVE(line) + '"';
|
||||||
config.testsOrTags.push_back( line );
|
config.testsOrTags.push_back( line );
|
||||||
config.testsOrTags.emplace_back( "," );
|
config.testsOrTags.emplace_back( "," );
|
||||||
}
|
}
|
||||||
@@ -300,8 +301,8 @@ namespace Catch {
|
|||||||
( "split the tests to execute into this many groups" )
|
( "split the tests to execute into this many groups" )
|
||||||
| Opt( setShardIndex, "shard index" )
|
| Opt( setShardIndex, "shard index" )
|
||||||
["--shard-index"]
|
["--shard-index"]
|
||||||
( "index of the group of tests to execute (see --shard-count)" ) |
|
( "index of the group of tests to execute (see --shard-count)" )
|
||||||
Opt( config.allowZeroTests )
|
| Opt( config.allowZeroTests )
|
||||||
["--allow-running-no-tests"]
|
["--allow-running-no-tests"]
|
||||||
( "Treat 'No tests run' as a success" )
|
( "Treat 'No tests run' as a success" )
|
||||||
| Arg( config.testsOrTags, "test name|pattern|tags" )
|
| Arg( config.testsOrTags, "test name|pattern|tags" )
|
||||||
|
@@ -29,14 +29,14 @@
|
|||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
||||||
# if (__cplusplus >= 201402L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 201402L)
|
|
||||||
# define CATCH_CPP14_OR_GREATER
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# if (__cplusplus >= 201703L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 201703L)
|
# if (__cplusplus >= 201703L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 201703L)
|
||||||
# define CATCH_CPP17_OR_GREATER
|
# define CATCH_CPP17_OR_GREATER
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
|
# if (__cplusplus >= 202002L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 202002L)
|
||||||
|
# define CATCH_CPP20_OR_GREATER
|
||||||
|
# endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Only GCC compiler should be used in this block, so other compilers trying to
|
// Only GCC compiler should be used in this block, so other compilers trying to
|
||||||
|
@@ -230,21 +230,21 @@ namespace {
|
|||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
|
||||||
Detail::unique_ptr<ColourImpl> makeColourImpl( ColourMode implSelection,
|
Detail::unique_ptr<ColourImpl> makeColourImpl( ColourMode colourSelection,
|
||||||
IStream* stream ) {
|
IStream* stream ) {
|
||||||
#if defined( CATCH_CONFIG_COLOUR_WIN32 )
|
#if defined( CATCH_CONFIG_COLOUR_WIN32 )
|
||||||
if ( implSelection == ColourMode::Win32 ) {
|
if ( colourSelection == ColourMode::Win32 ) {
|
||||||
return Detail::make_unique<Win32ColourImpl>( stream );
|
return Detail::make_unique<Win32ColourImpl>( stream );
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
if ( implSelection == ColourMode::ANSI ) {
|
if ( colourSelection == ColourMode::ANSI ) {
|
||||||
return Detail::make_unique<ANSIColourImpl>( stream );
|
return Detail::make_unique<ANSIColourImpl>( stream );
|
||||||
}
|
}
|
||||||
if ( implSelection == ColourMode::None ) {
|
if ( colourSelection == ColourMode::None ) {
|
||||||
return Detail::make_unique<NoColourImpl>( stream );
|
return Detail::make_unique<NoColourImpl>( stream );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( implSelection == ColourMode::PlatformDefault) {
|
if ( colourSelection == ColourMode::PlatformDefault) {
|
||||||
#if defined( CATCH_CONFIG_COLOUR_WIN32 )
|
#if defined( CATCH_CONFIG_COLOUR_WIN32 )
|
||||||
if ( Win32ColourImpl::useImplementationForStream( *stream ) ) {
|
if ( Win32ColourImpl::useImplementationForStream( *stream ) ) {
|
||||||
return Detail::make_unique<Win32ColourImpl>( stream );
|
return Detail::make_unique<Win32ColourImpl>( stream );
|
||||||
@@ -256,7 +256,7 @@ namespace Catch {
|
|||||||
return Detail::make_unique<NoColourImpl>( stream );
|
return Detail::make_unique<NoColourImpl>( stream );
|
||||||
}
|
}
|
||||||
|
|
||||||
CATCH_ERROR( "Could not create colour impl for selection " << static_cast<int>(implSelection) );
|
CATCH_ERROR( "Could not create colour impl for selection " << static_cast<int>(colourSelection) );
|
||||||
}
|
}
|
||||||
|
|
||||||
bool isColourImplAvailable( ColourMode colourSelection ) {
|
bool isColourImplAvailable( ColourMode colourSelection ) {
|
||||||
|
@@ -27,12 +27,6 @@ namespace Catch {
|
|||||||
return *Context::currentContext;
|
return *Context::currentContext;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Context::setResultCapture( IResultCapture* resultCapture ) {
|
|
||||||
m_resultCapture = resultCapture;
|
|
||||||
}
|
|
||||||
|
|
||||||
void Context::setConfig( IConfig const* config ) { m_config = config; }
|
|
||||||
|
|
||||||
SimplePcg32& sharedRng() {
|
SimplePcg32& sharedRng() {
|
||||||
static SimplePcg32 s_rng;
|
static SimplePcg32 s_rng;
|
||||||
return s_rng;
|
return s_rng;
|
||||||
|
@@ -26,10 +26,15 @@ namespace Catch {
|
|||||||
friend void cleanUpContext();
|
friend void cleanUpContext();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
IResultCapture* getResultCapture() const { return m_resultCapture; }
|
constexpr IResultCapture* getResultCapture() const {
|
||||||
IConfig const* getConfig() const { return m_config; }
|
return m_resultCapture;
|
||||||
void setResultCapture( IResultCapture* resultCapture );
|
}
|
||||||
void setConfig( IConfig const* config );
|
constexpr IConfig const* getConfig() const { return m_config; }
|
||||||
|
constexpr void setResultCapture( IResultCapture* resultCapture ) {
|
||||||
|
m_resultCapture = resultCapture;
|
||||||
|
}
|
||||||
|
constexpr void setConfig( IConfig const* config ) { m_config = config; }
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Context& getCurrentMutableContext();
|
Context& getCurrentMutableContext();
|
||||||
|
@@ -10,7 +10,12 @@
|
|||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
|
||||||
ITransientExpression::~ITransientExpression() = default;
|
void ITransientExpression::streamReconstructedExpression(
|
||||||
|
std::ostream& os ) const {
|
||||||
|
// We can't make this function pure virtual to keep ITransientExpression
|
||||||
|
// constexpr, so we write error message instead
|
||||||
|
os << "Some class derived from ITransientExpression without overriding streamReconstructedExpression";
|
||||||
|
}
|
||||||
|
|
||||||
void formatReconstructedExpression( std::ostream &os, std::string const& lhs, StringRef op, std::string const& rhs ) {
|
void formatReconstructedExpression( std::ostream &os, std::string const& lhs, StringRef op, std::string const& rhs ) {
|
||||||
if( lhs.size() + rhs.size() < 40 &&
|
if( lhs.size() + rhs.size() < 40 &&
|
||||||
|
@@ -13,10 +13,91 @@
|
|||||||
#include <catch2/internal/catch_compare_traits.hpp>
|
#include <catch2/internal/catch_compare_traits.hpp>
|
||||||
#include <catch2/internal/catch_test_failure_exception.hpp>
|
#include <catch2/internal/catch_test_failure_exception.hpp>
|
||||||
#include <catch2/internal/catch_logical_traits.hpp>
|
#include <catch2/internal/catch_logical_traits.hpp>
|
||||||
|
#include <catch2/internal/catch_compiler_capabilities.hpp>
|
||||||
|
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
#include <iosfwd>
|
#include <iosfwd>
|
||||||
|
|
||||||
|
/** \file
|
||||||
|
* Why does decomposing look the way it does:
|
||||||
|
*
|
||||||
|
* Conceptually, decomposing is simple. We change `REQUIRE( a == b )` into
|
||||||
|
* `Decomposer{} <= a == b`, so that `Decomposer{} <= a` is evaluated first,
|
||||||
|
* and our custom operator is used for `a == b`, because `a` is transformed
|
||||||
|
* into `ExprLhs<T&>` and then into `BinaryExpr<T&, U&>`.
|
||||||
|
*
|
||||||
|
* In practice, decomposing ends up a mess, because we have to support
|
||||||
|
* various fun things.
|
||||||
|
*
|
||||||
|
* 1) Types that are only comparable with literal 0, and they do this by
|
||||||
|
* comparing against a magic type with pointer constructor and deleted
|
||||||
|
* other constructors. Example: `REQUIRE((a <=> b) == 0)` in libstdc++
|
||||||
|
*
|
||||||
|
* 2) Types that are only comparable with literal 0, and they do this by
|
||||||
|
* comparing against a magic type with consteval integer constructor.
|
||||||
|
* Example: `REQUIRE((a <=> b) == 0)` in current MSVC STL.
|
||||||
|
*
|
||||||
|
* 3) Types that have no linkage, and so we cannot form a reference to
|
||||||
|
* them. Example: some implementations of traits.
|
||||||
|
*
|
||||||
|
* 4) Starting with C++20, when the compiler sees `a == b`, it also uses
|
||||||
|
* `b == a` when constructing the overload set. For us this means that
|
||||||
|
* when the compiler handles `ExprLhs<T> == b`, it also tries to resolve
|
||||||
|
* the overload set for `b == ExprLhs<T>`.
|
||||||
|
*
|
||||||
|
* To accomodate these use cases, decomposer ended up rather complex.
|
||||||
|
*
|
||||||
|
* 1) These types are handled by adding SFINAE overloads to our comparison
|
||||||
|
* operators, checking whether `T == U` are comparable with the given
|
||||||
|
* operator, and if not, whether T (or U) are comparable with literal 0.
|
||||||
|
* If yes, the overload compares T (or U) with 0 literal inline in the
|
||||||
|
* definition.
|
||||||
|
*
|
||||||
|
* Note that for extra correctness, we check that the other type is
|
||||||
|
* either an `int` (literal 0 is captured as `int` by templates), or
|
||||||
|
* a `long` (some platforms use 0L for `NULL` and we want to support
|
||||||
|
* that for pointer comparisons).
|
||||||
|
*
|
||||||
|
* 2) For these types, `is_foo_comparable<T, int>` is true, but letting
|
||||||
|
* them fall into the overload that actually does `T == int` causes
|
||||||
|
* compilation error. Handling them requires that the decomposition
|
||||||
|
* is `constexpr`, so that P2564R3 applies and the `consteval` from
|
||||||
|
* their accompanying magic type is propagated through the `constexpr`
|
||||||
|
* call stack.
|
||||||
|
*
|
||||||
|
* However this is not enough to handle these types automatically,
|
||||||
|
* because our default is to capture types by reference, to avoid
|
||||||
|
* runtime copies. While these references cannot become dangling,
|
||||||
|
* they outlive the constexpr context and thus the default capture
|
||||||
|
* path cannot be actually constexpr.
|
||||||
|
*
|
||||||
|
* The solution is to capture these types by value, by explicitly
|
||||||
|
* specializing `Catch::capture_by_value` for them. Catch2 provides
|
||||||
|
* specialization for `std::foo_ordering`s, but users can specialize
|
||||||
|
* the trait for their own types as well.
|
||||||
|
*
|
||||||
|
* 3) If a type has no linkage, we also cannot capture it by reference.
|
||||||
|
* The solution is once again to capture them by value. We handle
|
||||||
|
* the common cases by using `std::is_arithmetic` as the default
|
||||||
|
* for `Catch::capture_by_value`, but that is only a some-effort
|
||||||
|
* heuristic. But as with 2), users can specialize `capture_by_value`
|
||||||
|
* for their own types as needed.
|
||||||
|
*
|
||||||
|
* 4) To support C++20 and make the SFINAE on our decomposing operators
|
||||||
|
* work, the SFINAE has to happen in return type, rather than in
|
||||||
|
* a template type. This is due to our use of logical type traits
|
||||||
|
* (`conjunction`/`disjunction`/`negation`), that we use to workaround
|
||||||
|
* an issue in older (9-) versions of GCC. I still blame C++20 for
|
||||||
|
* this, because without the comparison order switching, the logical
|
||||||
|
* traits could still be used in template type.
|
||||||
|
*
|
||||||
|
* There are also other side concerns, e.g. supporting both `REQUIRE(a)`
|
||||||
|
* and `REQUIRE(a == b)`, or making `REQUIRE_THAT(a, IsEqual(b))` slot
|
||||||
|
* nicely into the same expression handling logic, but these are rather
|
||||||
|
* straightforward and add only a bit of complexity (e.g. common base
|
||||||
|
* class for decomposed expressions).
|
||||||
|
*/
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
#pragma warning(push)
|
#pragma warning(push)
|
||||||
#pragma warning(disable:4389) // '==' : signed/unsigned mismatch
|
#pragma warning(disable:4389) // '==' : signed/unsigned mismatch
|
||||||
@@ -29,13 +110,46 @@
|
|||||||
#ifdef __clang__
|
#ifdef __clang__
|
||||||
# pragma clang diagnostic push
|
# pragma clang diagnostic push
|
||||||
# pragma clang diagnostic ignored "-Wsign-compare"
|
# pragma clang diagnostic ignored "-Wsign-compare"
|
||||||
|
# pragma clang diagnostic ignored "-Wnon-virtual-dtor"
|
||||||
#elif defined __GNUC__
|
#elif defined __GNUC__
|
||||||
# pragma GCC diagnostic push
|
# pragma GCC diagnostic push
|
||||||
# pragma GCC diagnostic ignored "-Wsign-compare"
|
# pragma GCC diagnostic ignored "-Wsign-compare"
|
||||||
|
# pragma GCC diagnostic ignored "-Wnon-virtual-dtor"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CATCH_CPP20_OR_GREATER) && __has_include(<compare>)
|
||||||
|
# include <compare>
|
||||||
|
# if defined( __cpp_lib_three_way_comparison ) && \
|
||||||
|
__cpp_lib_three_way_comparison >= 201907L
|
||||||
|
# define CATCH_CONFIG_CPP20_COMPARE_OVERLOADS
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
|
||||||
|
namespace Detail {
|
||||||
|
// This was added in C++20, but we require only C++14 for now.
|
||||||
|
template <typename T>
|
||||||
|
using RemoveCVRef_t = std::remove_cv_t<std::remove_reference_t<T>>;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Note: There is nothing that stops us from extending this,
|
||||||
|
// e.g. to `std::is_scalar`, but the more encompassing
|
||||||
|
// traits are usually also more expensive. For now we
|
||||||
|
// keep this as it used to be and it can be changed later.
|
||||||
|
template <typename T>
|
||||||
|
struct capture_by_value
|
||||||
|
: std::integral_constant<bool, std::is_arithmetic<T>{}> {};
|
||||||
|
|
||||||
|
#if defined( CATCH_CONFIG_CPP20_COMPARE_OVERLOADS )
|
||||||
|
template <>
|
||||||
|
struct capture_by_value<std::strong_ordering> : std::true_type {};
|
||||||
|
template <>
|
||||||
|
struct capture_by_value<std::weak_ordering> : std::true_type {};
|
||||||
|
template <>
|
||||||
|
struct capture_by_value<std::partial_ordering> : std::true_type {};
|
||||||
|
#endif
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct always_false : std::false_type {};
|
struct always_false : std::false_type {};
|
||||||
|
|
||||||
@@ -43,23 +157,22 @@ namespace Catch {
|
|||||||
bool m_isBinaryExpression;
|
bool m_isBinaryExpression;
|
||||||
bool m_result;
|
bool m_result;
|
||||||
|
|
||||||
public:
|
protected:
|
||||||
auto isBinaryExpression() const -> bool { return m_isBinaryExpression; }
|
~ITransientExpression() = default;
|
||||||
auto getResult() const -> bool { return m_result; }
|
|
||||||
virtual void streamReconstructedExpression( std::ostream &os ) const = 0;
|
|
||||||
|
|
||||||
ITransientExpression( bool isBinaryExpression, bool result )
|
public:
|
||||||
|
constexpr auto isBinaryExpression() const -> bool { return m_isBinaryExpression; }
|
||||||
|
constexpr auto getResult() const -> bool { return m_result; }
|
||||||
|
//! This function **has** to be overriden by the derived class.
|
||||||
|
virtual void streamReconstructedExpression( std::ostream& os ) const;
|
||||||
|
|
||||||
|
constexpr ITransientExpression( bool isBinaryExpression, bool result )
|
||||||
: m_isBinaryExpression( isBinaryExpression ),
|
: m_isBinaryExpression( isBinaryExpression ),
|
||||||
m_result( result )
|
m_result( result )
|
||||||
{}
|
{}
|
||||||
|
|
||||||
ITransientExpression() = default;
|
constexpr ITransientExpression( ITransientExpression const& ) = default;
|
||||||
ITransientExpression(ITransientExpression const&) = default;
|
constexpr ITransientExpression& operator=( ITransientExpression const& ) = default;
|
||||||
ITransientExpression& operator=(ITransientExpression const&) = default;
|
|
||||||
|
|
||||||
// We don't actually need a virtual destructor, but many static analysers
|
|
||||||
// complain if it's not here :-(
|
|
||||||
virtual ~ITransientExpression(); // = default;
|
|
||||||
|
|
||||||
friend std::ostream& operator<<(std::ostream& out, ITransientExpression const& expr) {
|
friend std::ostream& operator<<(std::ostream& out, ITransientExpression const& expr) {
|
||||||
expr.streamReconstructedExpression(out);
|
expr.streamReconstructedExpression(out);
|
||||||
@@ -81,7 +194,7 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
BinaryExpr( bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs )
|
constexpr BinaryExpr( bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs )
|
||||||
: ITransientExpression{ true, comparisonResult },
|
: ITransientExpression{ true, comparisonResult },
|
||||||
m_lhs( lhs ),
|
m_lhs( lhs ),
|
||||||
m_op( op ),
|
m_op( op ),
|
||||||
@@ -154,7 +267,7 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit UnaryExpr( LhsT lhs )
|
explicit constexpr UnaryExpr( LhsT lhs )
|
||||||
: ITransientExpression{ false, static_cast<bool>(lhs) },
|
: ITransientExpression{ false, static_cast<bool>(lhs) },
|
||||||
m_lhs( lhs )
|
m_lhs( lhs )
|
||||||
{}
|
{}
|
||||||
@@ -165,31 +278,31 @@ namespace Catch {
|
|||||||
class ExprLhs {
|
class ExprLhs {
|
||||||
LhsT m_lhs;
|
LhsT m_lhs;
|
||||||
public:
|
public:
|
||||||
explicit ExprLhs( LhsT lhs ) : m_lhs( lhs ) {}
|
explicit constexpr ExprLhs( LhsT lhs ) : m_lhs( lhs ) {}
|
||||||
|
|
||||||
#define CATCH_INTERNAL_DEFINE_EXPRESSION_EQUALITY_OPERATOR( id, op ) \
|
#define CATCH_INTERNAL_DEFINE_EXPRESSION_EQUALITY_OPERATOR( id, op ) \
|
||||||
template <typename RhsT> \
|
template <typename RhsT> \
|
||||||
friend auto operator op( ExprLhs&& lhs, RhsT&& rhs ) \
|
constexpr friend auto operator op( ExprLhs&& lhs, RhsT&& rhs ) \
|
||||||
->std::enable_if_t< \
|
-> std::enable_if_t< \
|
||||||
Detail::conjunction<Detail::is_##id##_comparable<LhsT, RhsT>, \
|
Detail::conjunction<Detail::is_##id##_comparable<LhsT, RhsT>, \
|
||||||
Detail::negation<std::is_arithmetic< \
|
Detail::negation<capture_by_value< \
|
||||||
std::remove_reference_t<RhsT>>>>::value, \
|
Detail::RemoveCVRef_t<RhsT>>>>::value, \
|
||||||
BinaryExpr<LhsT, RhsT const&>> { \
|
BinaryExpr<LhsT, RhsT const&>> { \
|
||||||
return { \
|
return { \
|
||||||
static_cast<bool>( lhs.m_lhs op rhs ), lhs.m_lhs, #op##_sr, rhs }; \
|
static_cast<bool>( lhs.m_lhs op rhs ), lhs.m_lhs, #op##_sr, rhs }; \
|
||||||
} \
|
} \
|
||||||
template <typename RhsT> \
|
template <typename RhsT> \
|
||||||
friend auto operator op( ExprLhs&& lhs, RhsT rhs ) \
|
constexpr friend auto operator op( ExprLhs&& lhs, RhsT rhs ) \
|
||||||
->std::enable_if_t< \
|
-> std::enable_if_t< \
|
||||||
Detail::conjunction<Detail::is_##id##_comparable<LhsT, RhsT>, \
|
Detail::conjunction<Detail::is_##id##_comparable<LhsT, RhsT>, \
|
||||||
std::is_arithmetic<RhsT>>::value, \
|
capture_by_value<RhsT>>::value, \
|
||||||
BinaryExpr<LhsT, RhsT>> { \
|
BinaryExpr<LhsT, RhsT>> { \
|
||||||
return { \
|
return { \
|
||||||
static_cast<bool>( lhs.m_lhs op rhs ), lhs.m_lhs, #op##_sr, rhs }; \
|
static_cast<bool>( lhs.m_lhs op rhs ), lhs.m_lhs, #op##_sr, rhs }; \
|
||||||
} \
|
} \
|
||||||
template <typename RhsT> \
|
template <typename RhsT> \
|
||||||
friend auto operator op( ExprLhs&& lhs, RhsT rhs ) \
|
constexpr friend auto operator op( ExprLhs&& lhs, RhsT rhs ) \
|
||||||
->std::enable_if_t< \
|
-> std::enable_if_t< \
|
||||||
Detail::conjunction< \
|
Detail::conjunction< \
|
||||||
Detail::negation<Detail::is_##id##_comparable<LhsT, RhsT>>, \
|
Detail::negation<Detail::is_##id##_comparable<LhsT, RhsT>>, \
|
||||||
Detail::is_eq_0_comparable<LhsT>, \
|
Detail::is_eq_0_comparable<LhsT>, \
|
||||||
@@ -202,8 +315,8 @@ namespace Catch {
|
|||||||
static_cast<bool>( lhs.m_lhs op 0 ), lhs.m_lhs, #op##_sr, rhs }; \
|
static_cast<bool>( lhs.m_lhs op 0 ), lhs.m_lhs, #op##_sr, rhs }; \
|
||||||
} \
|
} \
|
||||||
template <typename RhsT> \
|
template <typename RhsT> \
|
||||||
friend auto operator op( ExprLhs&& lhs, RhsT rhs ) \
|
constexpr friend auto operator op( ExprLhs&& lhs, RhsT rhs ) \
|
||||||
->std::enable_if_t< \
|
-> std::enable_if_t< \
|
||||||
Detail::conjunction< \
|
Detail::conjunction< \
|
||||||
Detail::negation<Detail::is_##id##_comparable<LhsT, RhsT>>, \
|
Detail::negation<Detail::is_##id##_comparable<LhsT, RhsT>>, \
|
||||||
Detail::is_eq_0_comparable<RhsT>, \
|
Detail::is_eq_0_comparable<RhsT>, \
|
||||||
@@ -220,29 +333,30 @@ namespace Catch {
|
|||||||
|
|
||||||
#undef CATCH_INTERNAL_DEFINE_EXPRESSION_EQUALITY_OPERATOR
|
#undef CATCH_INTERNAL_DEFINE_EXPRESSION_EQUALITY_OPERATOR
|
||||||
|
|
||||||
|
|
||||||
#define CATCH_INTERNAL_DEFINE_EXPRESSION_COMPARISON_OPERATOR( id, op ) \
|
#define CATCH_INTERNAL_DEFINE_EXPRESSION_COMPARISON_OPERATOR( id, op ) \
|
||||||
template <typename RhsT> \
|
template <typename RhsT> \
|
||||||
friend auto operator op( ExprLhs&& lhs, RhsT&& rhs ) \
|
constexpr friend auto operator op( ExprLhs&& lhs, RhsT&& rhs ) \
|
||||||
->std::enable_if_t< \
|
-> std::enable_if_t< \
|
||||||
Detail::conjunction<Detail::is_##id##_comparable<LhsT, RhsT>, \
|
Detail::conjunction<Detail::is_##id##_comparable<LhsT, RhsT>, \
|
||||||
Detail::negation<std::is_arithmetic< \
|
Detail::negation<capture_by_value< \
|
||||||
std::remove_reference_t<RhsT>>>>::value, \
|
Detail::RemoveCVRef_t<RhsT>>>>::value, \
|
||||||
BinaryExpr<LhsT, RhsT const&>> { \
|
BinaryExpr<LhsT, RhsT const&>> { \
|
||||||
return { \
|
return { \
|
||||||
static_cast<bool>( lhs.m_lhs op rhs ), lhs.m_lhs, #op##_sr, rhs }; \
|
static_cast<bool>( lhs.m_lhs op rhs ), lhs.m_lhs, #op##_sr, rhs }; \
|
||||||
} \
|
} \
|
||||||
template <typename RhsT> \
|
template <typename RhsT> \
|
||||||
friend auto operator op( ExprLhs&& lhs, RhsT rhs ) \
|
constexpr friend auto operator op( ExprLhs&& lhs, RhsT rhs ) \
|
||||||
->std::enable_if_t< \
|
-> std::enable_if_t< \
|
||||||
Detail::conjunction<Detail::is_##id##_comparable<LhsT, RhsT>, \
|
Detail::conjunction<Detail::is_##id##_comparable<LhsT, RhsT>, \
|
||||||
std::is_arithmetic<RhsT>>::value, \
|
capture_by_value<RhsT>>::value, \
|
||||||
BinaryExpr<LhsT, RhsT>> { \
|
BinaryExpr<LhsT, RhsT>> { \
|
||||||
return { \
|
return { \
|
||||||
static_cast<bool>( lhs.m_lhs op rhs ), lhs.m_lhs, #op##_sr, rhs }; \
|
static_cast<bool>( lhs.m_lhs op rhs ), lhs.m_lhs, #op##_sr, rhs }; \
|
||||||
} \
|
} \
|
||||||
template <typename RhsT> \
|
template <typename RhsT> \
|
||||||
friend auto operator op( ExprLhs&& lhs, RhsT rhs ) \
|
constexpr friend auto operator op( ExprLhs&& lhs, RhsT rhs ) \
|
||||||
->std::enable_if_t< \
|
-> std::enable_if_t< \
|
||||||
Detail::conjunction< \
|
Detail::conjunction< \
|
||||||
Detail::negation<Detail::is_##id##_comparable<LhsT, RhsT>>, \
|
Detail::negation<Detail::is_##id##_comparable<LhsT, RhsT>>, \
|
||||||
Detail::is_##id##_0_comparable<LhsT>, \
|
Detail::is_##id##_0_comparable<LhsT>, \
|
||||||
@@ -253,8 +367,8 @@ namespace Catch {
|
|||||||
static_cast<bool>( lhs.m_lhs op 0 ), lhs.m_lhs, #op##_sr, rhs }; \
|
static_cast<bool>( lhs.m_lhs op 0 ), lhs.m_lhs, #op##_sr, rhs }; \
|
||||||
} \
|
} \
|
||||||
template <typename RhsT> \
|
template <typename RhsT> \
|
||||||
friend auto operator op( ExprLhs&& lhs, RhsT rhs ) \
|
constexpr friend auto operator op( ExprLhs&& lhs, RhsT rhs ) \
|
||||||
->std::enable_if_t< \
|
-> std::enable_if_t< \
|
||||||
Detail::conjunction< \
|
Detail::conjunction< \
|
||||||
Detail::negation<Detail::is_##id##_comparable<LhsT, RhsT>>, \
|
Detail::negation<Detail::is_##id##_comparable<LhsT, RhsT>>, \
|
||||||
Detail::is_##id##_0_comparable<RhsT>, \
|
Detail::is_##id##_0_comparable<RhsT>, \
|
||||||
@@ -274,17 +388,17 @@ namespace Catch {
|
|||||||
|
|
||||||
#define CATCH_INTERNAL_DEFINE_EXPRESSION_OPERATOR( op ) \
|
#define CATCH_INTERNAL_DEFINE_EXPRESSION_OPERATOR( op ) \
|
||||||
template <typename RhsT> \
|
template <typename RhsT> \
|
||||||
friend auto operator op( ExprLhs&& lhs, RhsT&& rhs ) \
|
constexpr friend auto operator op( ExprLhs&& lhs, RhsT&& rhs ) \
|
||||||
->std::enable_if_t< \
|
-> std::enable_if_t< \
|
||||||
!std::is_arithmetic<std::remove_reference_t<RhsT>>::value, \
|
!capture_by_value<Detail::RemoveCVRef_t<RhsT>>::value, \
|
||||||
BinaryExpr<LhsT, RhsT const&>> { \
|
BinaryExpr<LhsT, RhsT const&>> { \
|
||||||
return { \
|
return { \
|
||||||
static_cast<bool>( lhs.m_lhs op rhs ), lhs.m_lhs, #op##_sr, rhs }; \
|
static_cast<bool>( lhs.m_lhs op rhs ), lhs.m_lhs, #op##_sr, rhs }; \
|
||||||
} \
|
} \
|
||||||
template <typename RhsT> \
|
template <typename RhsT> \
|
||||||
friend auto operator op( ExprLhs&& lhs, RhsT rhs ) \
|
constexpr friend auto operator op( ExprLhs&& lhs, RhsT rhs ) \
|
||||||
->std::enable_if_t<std::is_arithmetic<RhsT>::value, \
|
-> std::enable_if_t<capture_by_value<RhsT>::value, \
|
||||||
BinaryExpr<LhsT, RhsT>> { \
|
BinaryExpr<LhsT, RhsT>> { \
|
||||||
return { \
|
return { \
|
||||||
static_cast<bool>( lhs.m_lhs op rhs ), lhs.m_lhs, #op##_sr, rhs }; \
|
static_cast<bool>( lhs.m_lhs op rhs ), lhs.m_lhs, #op##_sr, rhs }; \
|
||||||
}
|
}
|
||||||
@@ -309,19 +423,22 @@ namespace Catch {
|
|||||||
"wrap the expression inside parentheses, or decompose it");
|
"wrap the expression inside parentheses, or decompose it");
|
||||||
}
|
}
|
||||||
|
|
||||||
auto makeUnaryExpr() const -> UnaryExpr<LhsT> {
|
constexpr auto makeUnaryExpr() const -> UnaryExpr<LhsT> {
|
||||||
return UnaryExpr<LhsT>{ m_lhs };
|
return UnaryExpr<LhsT>{ m_lhs };
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
struct Decomposer {
|
struct Decomposer {
|
||||||
template<typename T, std::enable_if_t<!std::is_arithmetic<std::remove_reference_t<T>>::value, int> = 0>
|
template <typename T,
|
||||||
friend auto operator <= ( Decomposer &&, T && lhs ) -> ExprLhs<T const&> {
|
std::enable_if_t<!capture_by_value<Detail::RemoveCVRef_t<T>>::value,
|
||||||
|
int> = 0>
|
||||||
|
constexpr friend auto operator <= ( Decomposer &&, T && lhs ) -> ExprLhs<T const&> {
|
||||||
return ExprLhs<const T&>{ lhs };
|
return ExprLhs<const T&>{ lhs };
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T, std::enable_if_t<std::is_arithmetic<T>::value, int> = 0>
|
template <typename T,
|
||||||
friend auto operator <= ( Decomposer &&, T value ) -> ExprLhs<T> {
|
std::enable_if_t<capture_by_value<T>::value, int> = 0>
|
||||||
|
constexpr friend auto operator <= ( Decomposer &&, T value ) -> ExprLhs<T> {
|
||||||
return ExprLhs<T>{ value };
|
return ExprLhs<T>{ value };
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@@ -24,7 +24,7 @@ namespace Catch {
|
|||||||
|
|
||||||
std::vector<Catch::Detail::unique_ptr<EnumInfo>> m_enumInfos;
|
std::vector<Catch::Detail::unique_ptr<EnumInfo>> m_enumInfos;
|
||||||
|
|
||||||
EnumInfo const& registerEnum( StringRef enumName, StringRef allEnums, std::vector<int> const& values) override;
|
EnumInfo const& registerEnum( StringRef enumName, StringRef allValueNames, std::vector<int> const& values) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
std::vector<StringRef> parseEnums( StringRef enums );
|
std::vector<StringRef> parseEnums( StringRef enums );
|
||||||
|
@@ -26,6 +26,7 @@
|
|||||||
|
|
||||||
#include <catch2/internal/catch_fatal_condition_handler.hpp>
|
#include <catch2/internal/catch_fatal_condition_handler.hpp>
|
||||||
|
|
||||||
|
#include <catch2/internal/catch_compiler_capabilities.hpp>
|
||||||
#include <catch2/internal/catch_context.hpp>
|
#include <catch2/internal/catch_context.hpp>
|
||||||
#include <catch2/internal/catch_enforce.hpp>
|
#include <catch2/internal/catch_enforce.hpp>
|
||||||
#include <catch2/interfaces/catch_interfaces_capture.hpp>
|
#include <catch2/interfaces/catch_interfaces_capture.hpp>
|
||||||
|
@@ -8,9 +8,6 @@
|
|||||||
#ifndef CATCH_FATAL_CONDITION_HANDLER_HPP_INCLUDED
|
#ifndef CATCH_FATAL_CONDITION_HANDLER_HPP_INCLUDED
|
||||||
#define CATCH_FATAL_CONDITION_HANDLER_HPP_INCLUDED
|
#define CATCH_FATAL_CONDITION_HANDLER_HPP_INCLUDED
|
||||||
|
|
||||||
#include <catch2/internal/catch_platform.hpp>
|
|
||||||
#include <catch2/internal/catch_compiler_capabilities.hpp>
|
|
||||||
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
@@ -18,6 +18,7 @@ namespace Catch {
|
|||||||
typename Sentinel,
|
typename Sentinel,
|
||||||
typename T,
|
typename T,
|
||||||
typename Comparator>
|
typename Comparator>
|
||||||
|
constexpr
|
||||||
ForwardIter find_sentinel( ForwardIter start,
|
ForwardIter find_sentinel( ForwardIter start,
|
||||||
Sentinel sentinel,
|
Sentinel sentinel,
|
||||||
T const& value,
|
T const& value,
|
||||||
@@ -33,6 +34,7 @@ namespace Catch {
|
|||||||
typename Sentinel,
|
typename Sentinel,
|
||||||
typename T,
|
typename T,
|
||||||
typename Comparator>
|
typename Comparator>
|
||||||
|
constexpr
|
||||||
std::ptrdiff_t count_sentinel( ForwardIter start,
|
std::ptrdiff_t count_sentinel( ForwardIter start,
|
||||||
Sentinel sentinel,
|
Sentinel sentinel,
|
||||||
T const& value,
|
T const& value,
|
||||||
@@ -46,6 +48,7 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename ForwardIter, typename Sentinel>
|
template <typename ForwardIter, typename Sentinel>
|
||||||
|
constexpr
|
||||||
std::enable_if_t<!std::is_same<ForwardIter, Sentinel>::value,
|
std::enable_if_t<!std::is_same<ForwardIter, Sentinel>::value,
|
||||||
std::ptrdiff_t>
|
std::ptrdiff_t>
|
||||||
sentinel_distance( ForwardIter iter, const Sentinel sentinel ) {
|
sentinel_distance( ForwardIter iter, const Sentinel sentinel ) {
|
||||||
@@ -58,8 +61,8 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename ForwardIter>
|
template <typename ForwardIter>
|
||||||
std::ptrdiff_t sentinel_distance( ForwardIter first,
|
constexpr std::ptrdiff_t sentinel_distance( ForwardIter first,
|
||||||
ForwardIter last ) {
|
ForwardIter last ) {
|
||||||
return std::distance( first, last );
|
return std::distance( first, last );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -68,11 +71,11 @@ namespace Catch {
|
|||||||
typename ForwardIter2,
|
typename ForwardIter2,
|
||||||
typename Sentinel2,
|
typename Sentinel2,
|
||||||
typename Comparator>
|
typename Comparator>
|
||||||
bool check_element_counts( ForwardIter1 first_1,
|
constexpr bool check_element_counts( ForwardIter1 first_1,
|
||||||
const Sentinel1 end_1,
|
const Sentinel1 end_1,
|
||||||
ForwardIter2 first_2,
|
ForwardIter2 first_2,
|
||||||
const Sentinel2 end_2,
|
const Sentinel2 end_2,
|
||||||
Comparator cmp ) {
|
Comparator cmp ) {
|
||||||
auto cursor = first_1;
|
auto cursor = first_1;
|
||||||
while ( cursor != end_1 ) {
|
while ( cursor != end_1 ) {
|
||||||
if ( find_sentinel( first_1, cursor, *cursor, cmp ) ==
|
if ( find_sentinel( first_1, cursor, *cursor, cmp ) ==
|
||||||
@@ -102,11 +105,11 @@ namespace Catch {
|
|||||||
typename ForwardIter2,
|
typename ForwardIter2,
|
||||||
typename Sentinel2,
|
typename Sentinel2,
|
||||||
typename Comparator>
|
typename Comparator>
|
||||||
bool is_permutation( ForwardIter1 first_1,
|
constexpr bool is_permutation( ForwardIter1 first_1,
|
||||||
const Sentinel1 end_1,
|
const Sentinel1 end_1,
|
||||||
ForwardIter2 first_2,
|
ForwardIter2 first_2,
|
||||||
const Sentinel2 end_2,
|
const Sentinel2 end_2,
|
||||||
Comparator cmp ) {
|
Comparator cmp ) {
|
||||||
// TODO: no optimization for stronger iterators, because we would also have to constrain on sentinel vs not sentinel types
|
// TODO: no optimization for stronger iterators, because we would also have to constrain on sentinel vs not sentinel types
|
||||||
// TODO: Comparator has to be "both sides", e.g. a == b => b == a
|
// TODO: Comparator has to be "both sides", e.g. a == b => b == a
|
||||||
// This skips shared prefix of the two ranges
|
// This skips shared prefix of the two ranges
|
||||||
|
@@ -80,7 +80,6 @@ namespace Detail {
|
|||||||
CATCH_ENFORCE( !m_ofs.fail(), "Unable to open file: '" << filename << '\'' );
|
CATCH_ENFORCE( !m_ofs.fail(), "Unable to open file: '" << filename << '\'' );
|
||||||
m_ofs << std::unitbuf;
|
m_ofs << std::unitbuf;
|
||||||
}
|
}
|
||||||
~FileStream() override = default;
|
|
||||||
public: // IStream
|
public: // IStream
|
||||||
std::ostream& stream() override {
|
std::ostream& stream() override {
|
||||||
return m_ofs;
|
return m_ofs;
|
||||||
@@ -95,7 +94,6 @@ namespace Detail {
|
|||||||
// Store the streambuf from cout up-front because
|
// Store the streambuf from cout up-front because
|
||||||
// cout may get redirected when running tests
|
// cout may get redirected when running tests
|
||||||
CoutStream() : m_os( Catch::cout().rdbuf() ) {}
|
CoutStream() : m_os( Catch::cout().rdbuf() ) {}
|
||||||
~CoutStream() override = default;
|
|
||||||
|
|
||||||
public: // IStream
|
public: // IStream
|
||||||
std::ostream& stream() override { return m_os; }
|
std::ostream& stream() override { return m_os; }
|
||||||
@@ -109,7 +107,6 @@ namespace Detail {
|
|||||||
// Store the streambuf from cerr up-front because
|
// Store the streambuf from cerr up-front because
|
||||||
// cout may get redirected when running tests
|
// cout may get redirected when running tests
|
||||||
CerrStream(): m_os( Catch::cerr().rdbuf() ) {}
|
CerrStream(): m_os( Catch::cerr().rdbuf() ) {}
|
||||||
~CerrStream() override = default;
|
|
||||||
|
|
||||||
public: // IStream
|
public: // IStream
|
||||||
std::ostream& stream() override { return m_os; }
|
std::ostream& stream() override { return m_os; }
|
||||||
@@ -127,8 +124,6 @@ namespace Detail {
|
|||||||
m_os( m_streamBuf.get() )
|
m_os( m_streamBuf.get() )
|
||||||
{}
|
{}
|
||||||
|
|
||||||
~DebugOutStream() override = default;
|
|
||||||
|
|
||||||
public: // IStream
|
public: // IStream
|
||||||
std::ostream& stream() override { return m_os; }
|
std::ostream& stream() override { return m_os; }
|
||||||
};
|
};
|
||||||
|
@@ -31,7 +31,7 @@ namespace Catch {
|
|||||||
m_os{ os }, m_indent_level{ indent_level } {
|
m_os{ os }, m_indent_level{ indent_level } {
|
||||||
m_os << '{';
|
m_os << '{';
|
||||||
}
|
}
|
||||||
JsonObjectWriter::JsonObjectWriter( JsonObjectWriter&& source ):
|
JsonObjectWriter::JsonObjectWriter( JsonObjectWriter&& source ) noexcept:
|
||||||
m_os{ source.m_os },
|
m_os{ source.m_os },
|
||||||
m_indent_level{ source.m_indent_level },
|
m_indent_level{ source.m_indent_level },
|
||||||
m_should_comma{ source.m_should_comma },
|
m_should_comma{ source.m_should_comma },
|
||||||
@@ -62,7 +62,7 @@ namespace Catch {
|
|||||||
m_os{ os }, m_indent_level{ indent_level } {
|
m_os{ os }, m_indent_level{ indent_level } {
|
||||||
m_os << '[';
|
m_os << '[';
|
||||||
}
|
}
|
||||||
JsonArrayWriter::JsonArrayWriter( JsonArrayWriter&& source ):
|
JsonArrayWriter::JsonArrayWriter( JsonArrayWriter&& source ) noexcept:
|
||||||
m_os{ source.m_os },
|
m_os{ source.m_os },
|
||||||
m_indent_level{ source.m_indent_level },
|
m_indent_level{ source.m_indent_level },
|
||||||
m_should_comma{ source.m_should_comma },
|
m_should_comma{ source.m_should_comma },
|
||||||
|
@@ -65,7 +65,7 @@ namespace Catch {
|
|||||||
JsonObjectWriter( std::ostream& os );
|
JsonObjectWriter( std::ostream& os );
|
||||||
JsonObjectWriter( std::ostream& os, std::uint64_t indent_level );
|
JsonObjectWriter( std::ostream& os, std::uint64_t indent_level );
|
||||||
|
|
||||||
JsonObjectWriter( JsonObjectWriter&& source );
|
JsonObjectWriter( JsonObjectWriter&& source ) noexcept;
|
||||||
JsonObjectWriter& operator=( JsonObjectWriter&& source ) = delete;
|
JsonObjectWriter& operator=( JsonObjectWriter&& source ) = delete;
|
||||||
|
|
||||||
~JsonObjectWriter();
|
~JsonObjectWriter();
|
||||||
@@ -84,7 +84,7 @@ namespace Catch {
|
|||||||
JsonArrayWriter( std::ostream& os );
|
JsonArrayWriter( std::ostream& os );
|
||||||
JsonArrayWriter( std::ostream& os, std::uint64_t indent_level );
|
JsonArrayWriter( std::ostream& os, std::uint64_t indent_level );
|
||||||
|
|
||||||
JsonArrayWriter( JsonArrayWriter&& source );
|
JsonArrayWriter( JsonArrayWriter&& source ) noexcept;
|
||||||
JsonArrayWriter& operator=( JsonArrayWriter&& source ) = delete;
|
JsonArrayWriter& operator=( JsonArrayWriter&& source ) = delete;
|
||||||
|
|
||||||
~JsonArrayWriter();
|
~JsonArrayWriter();
|
||||||
|
@@ -22,13 +22,13 @@ namespace Catch {
|
|||||||
ITransientExpression const* m_transientExpression = nullptr;
|
ITransientExpression const* m_transientExpression = nullptr;
|
||||||
bool m_isNegated;
|
bool m_isNegated;
|
||||||
public:
|
public:
|
||||||
LazyExpression( bool isNegated ):
|
constexpr LazyExpression( bool isNegated ):
|
||||||
m_isNegated(isNegated)
|
m_isNegated(isNegated)
|
||||||
{}
|
{}
|
||||||
LazyExpression(LazyExpression const& other) = default;
|
constexpr LazyExpression(LazyExpression const& other) = default;
|
||||||
LazyExpression& operator = ( LazyExpression const& ) = delete;
|
LazyExpression& operator = ( LazyExpression const& ) = delete;
|
||||||
|
|
||||||
explicit operator bool() const {
|
constexpr explicit operator bool() const {
|
||||||
return m_transientExpression != nullptr;
|
return m_transientExpression != nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -14,10 +14,7 @@
|
|||||||
#include <catch2/internal/catch_reporter_registry.hpp>
|
#include <catch2/internal/catch_reporter_registry.hpp>
|
||||||
#include <catch2/internal/catch_move_and_forward.hpp>
|
#include <catch2/internal/catch_move_and_forward.hpp>
|
||||||
#include <catch2/internal/catch_case_insensitive_comparisons.hpp>
|
#include <catch2/internal/catch_case_insensitive_comparisons.hpp>
|
||||||
|
|
||||||
#include <catch2/internal/catch_context.hpp>
|
|
||||||
#include <catch2/catch_config.hpp>
|
#include <catch2/catch_config.hpp>
|
||||||
#include <catch2/catch_test_spec.hpp>
|
|
||||||
#include <catch2/catch_test_case_info.hpp>
|
#include <catch2/catch_test_case_info.hpp>
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user