Skip to content

Commit

Permalink
Project import generated by Copybara.
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 68539be18bdf0b43286c2c4203da7887d51d6968
  • Loading branch information
Vertexwahn committed May 3, 2024
1 parent ab37c8c commit 8734273
Show file tree
Hide file tree
Showing 396 changed files with 8,473 additions and 2,941 deletions.
12 changes: 6 additions & 6 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
# macOS 14/M1 is still not supported on Azure Pipelines
# consult documentation for Microsoft-hosted agents:
# https://learn.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops&tabs=yaml
#- job: MacOSAppleClang14Sonoma
# displayName: "Apple Clang14 on macOS 14 (Sonoma)"
# pool:
# vmImage: 'macOS-14'
# steps:
# - template: devertexwahn/ci/macOS-14-apple-clang14.yaml
- job: MacOSAppleClang14Sonoma
displayName: "Apple Clang14 on macOS 14 (Sonoma)"
pool:
vmImage: 'macOS-14'
steps:
- template: devertexwahn/ci/macOS-14-apple-clang14.yaml


#- job: Ubuntu20Clang14
Expand Down
218 changes: 0 additions & 218 deletions devertexwahn/okapi/third_party/libwebp.BUILD

This file was deleted.

16 changes: 0 additions & 16 deletions devertexwahn/okapi/third_party/pugixml.BUILD

This file was deleted.

1 change: 1 addition & 0 deletions third_party/Catch2/CMake/CatchMiscFunctions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ function(add_warnings_to_targets targets)
"-Wmissing-noreturn"
"-Wmissing-prototypes"
"-Wmissing-variable-declarations"
"-Wnon-virtual-dtor"
"-Wnull-dereference"
"-Wold-style-cast"
"-Woverloaded-virtual"
Expand Down
4 changes: 2 additions & 2 deletions third_party/Catch2/src/catch2/catch_tostring.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -239,13 +239,13 @@ std::string StringMaker<unsigned char>::convert(unsigned char value) {
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) {
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) {
return Detail::fpToString(value, precision);
Expand Down
2 changes: 2 additions & 0 deletions third_party/Catch2/src/catch2/internal/catch_decomposer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,11 @@
#ifdef __clang__
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wsign-compare"
# pragma clang diagnostic ignored "-Wnon-virtual-dtor"
#elif defined __GNUC__
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wsign-compare"
# pragma GCC diagnostic ignored "-Wnon-virtual-dtor"
#endif

#if defined(CATCH_CPP20_OR_GREATER) && __has_include(<compare>)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,16 @@

namespace Catch {

#ifdef __clang__
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wsign-compare"
# pragma clang diagnostic ignored "-Wnon-virtual-dtor"
#elif defined __GNUC__
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wsign-compare"
# pragma GCC diagnostic ignored "-Wnon-virtual-dtor"
#endif

template<typename ArgT, typename MatcherT>
class MatchExpr : public ITransientExpression {
ArgT && m_arg;
Expand All @@ -36,6 +46,13 @@ namespace Catch {
}
};

#ifdef __clang__
# pragma clang diagnostic pop
#elif defined __GNUC__
# pragma GCC diagnostic pop
#endif


namespace Matchers {
template <typename ArgT>
class MatcherBase;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,6 @@ b1!
:test-result: FAIL nested sections can be skipped dynamically at runtime
:test-result: PASS non streamable - with conv. op
:test-result: PASS non-copyable objects
:test-result: PASS normal_cdf
:test-result: PASS normal_quantile
:test-result: PASS not allowed
:test-result: FAIL not prints unscoped info from previous failures
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,6 @@
:test-result: FAIL nested sections can be skipped dynamically at runtime
:test-result: PASS non streamable - with conv. op
:test-result: PASS non-copyable objects
:test-result: PASS normal_cdf
:test-result: PASS normal_quantile
:test-result: PASS not allowed
:test-result: FAIL not prints unscoped info from previous failures
Expand Down
Loading

0 comments on commit 8734273

Please sign in to comment.