diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-08 09:00:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-08 09:00:57 +0200 |
commit | f156a45c0155c7fe227dfb74a92d797e3d3f2032 (patch) | |
tree | 6005bc1d441409a49dff6ef7a562e47482eae6db | |
parent | Merge pull request #965 from lioncash/unused-files (diff) | |
parent | externals: Update catch to 2.3.0 (diff) | |
download | yuzu-f156a45c0155c7fe227dfb74a92d797e3d3f2032.tar yuzu-f156a45c0155c7fe227dfb74a92d797e3d3f2032.tar.gz yuzu-f156a45c0155c7fe227dfb74a92d797e3d3f2032.tar.bz2 yuzu-f156a45c0155c7fe227dfb74a92d797e3d3f2032.tar.lz yuzu-f156a45c0155c7fe227dfb74a92d797e3d3f2032.tar.xz yuzu-f156a45c0155c7fe227dfb74a92d797e3d3f2032.tar.zst yuzu-f156a45c0155c7fe227dfb74a92d797e3d3f2032.zip |
Diffstat (limited to '')
m--------- | externals/catch | 0 | ||||
-rw-r--r-- | src/tests/common/param_package.cpp | 2 | ||||
-rw-r--r-- | src/tests/core/core_timing.cpp | 2 | ||||
-rw-r--r-- | src/tests/glad.cpp | 2 | ||||
-rw-r--r-- | src/tests/tests.cpp | 2 |
5 files changed, 4 insertions, 4 deletions
diff --git a/externals/catch b/externals/catch -Subproject d2a130f2433aeaca070e3e4d6298a80049d21cf +Subproject 15cf3caaceb21172ea42a24e595a2eb58c3ec96 diff --git a/src/tests/common/param_package.cpp b/src/tests/common/param_package.cpp index 19d372236..4c0f9654f 100644 --- a/src/tests/common/param_package.cpp +++ b/src/tests/common/param_package.cpp @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -#include <catch.hpp> +#include <catch2/catch.hpp> #include <math.h> #include "common/param_package.h" diff --git a/src/tests/core/core_timing.cpp b/src/tests/core/core_timing.cpp index fcaa30990..2242c14cf 100644 --- a/src/tests/core/core_timing.cpp +++ b/src/tests/core/core_timing.cpp @@ -2,7 +2,7 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. -#include <catch.hpp> +#include <catch2/catch.hpp> #include <array> #include <bitset> diff --git a/src/tests/glad.cpp b/src/tests/glad.cpp index b0b016440..1797c0e3d 100644 --- a/src/tests/glad.cpp +++ b/src/tests/glad.cpp @@ -2,7 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -#include <catch.hpp> +#include <catch2/catch.hpp> #include <glad/glad.h> // This is not an actual test, but a work-around for issue #2183. diff --git a/src/tests/tests.cpp b/src/tests/tests.cpp index 73978676f..275b430d9 100644 --- a/src/tests/tests.cpp +++ b/src/tests/tests.cpp @@ -3,7 +3,7 @@ // Refer to the license.txt file included. #define CATCH_CONFIG_MAIN -#include <catch.hpp> +#include <catch2/catch.hpp> // Catch provides the main function since we've given it the // CATCH_CONFIG_MAIN preprocessor directive. |