mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-25 06:46:10 +01:00
Enable Werror for dev builds
This commit is contained in:
parent
3b965aa501
commit
87c125ecb8
@ -302,7 +302,7 @@ if (NOT NO_SELFTEST)
|
|||||||
|
|
||||||
# Add desired warnings
|
# Add desired warnings
|
||||||
if ( CMAKE_CXX_COMPILER_ID MATCHES "Clang|AppleClang|GNU" )
|
if ( CMAKE_CXX_COMPILER_ID MATCHES "Clang|AppleClang|GNU" )
|
||||||
target_compile_options( SelfTest PRIVATE -Wall -Wextra -Wunreachable-code )
|
target_compile_options( SelfTest PRIVATE -Wall -Wextra -Wunreachable-code -Werror )
|
||||||
endif()
|
endif()
|
||||||
# Clang specific warning go here
|
# Clang specific warning go here
|
||||||
if ( CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
|
if ( CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
|
||||||
|
@ -295,12 +295,15 @@ void print( std::ostream& os, int const level, std::string const& title, Catch::
|
|||||||
// 2. My listener and registration:
|
// 2. My listener and registration:
|
||||||
//
|
//
|
||||||
|
|
||||||
const std::string dashed_line =
|
char const * dashed_line =
|
||||||
"--------------------------------------------------------------------------";
|
"--------------------------------------------------------------------------";
|
||||||
|
|
||||||
struct MyListener : Catch::TestEventListenerBase {
|
struct MyListener : Catch::TestEventListenerBase {
|
||||||
|
|
||||||
using TestEventListenerBase::TestEventListenerBase; // inherit constructor
|
using TestEventListenerBase::TestEventListenerBase; // inherit constructor
|
||||||
|
|
||||||
|
// Get rid of Wweak-tables
|
||||||
|
~MyListener();
|
||||||
|
|
||||||
// The whole test run starting
|
// The whole test run starting
|
||||||
virtual void testRunStarting( Catch::TestRunInfo const& testRunInfo ) override {
|
virtual void testRunStarting( Catch::TestRunInfo const& testRunInfo ) override {
|
||||||
@ -367,6 +370,10 @@ struct MyListener : Catch::TestEventListenerBase {
|
|||||||
|
|
||||||
CATCH_REGISTER_LISTENER( MyListener )
|
CATCH_REGISTER_LISTENER( MyListener )
|
||||||
|
|
||||||
|
// Get rid of Wweak-tables
|
||||||
|
MyListener::~MyListener() {}
|
||||||
|
|
||||||
|
|
||||||
// -----------------------------------------------------------------------
|
// -----------------------------------------------------------------------
|
||||||
// 3. Test cases:
|
// 3. Test cases:
|
||||||
//
|
//
|
||||||
|
@ -12,6 +12,11 @@
|
|||||||
#include "catch_context.h"
|
#include "catch_context.h"
|
||||||
#include "catch_interfaces_capture.h"
|
#include "catch_interfaces_capture.h"
|
||||||
|
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# pragma GCC diagnostic push
|
||||||
|
# pragma GCC diagnostic ignored "-Wmissing-field-initializers"
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
// Report the error condition
|
// Report the error condition
|
||||||
void reportFatal( char const * const message ) {
|
void reportFatal( char const * const message ) {
|
||||||
@ -174,3 +179,7 @@ namespace Catch {
|
|||||||
# endif // CATCH_CONFIG_POSIX_SIGNALS
|
# endif // CATCH_CONFIG_POSIX_SIGNALS
|
||||||
|
|
||||||
#endif // not Windows
|
#endif // not Windows
|
||||||
|
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
# pragma GCC diagnostic pop
|
||||||
|
#endif
|
||||||
|
@ -8,7 +8,10 @@
|
|||||||
#ifdef __clang__
|
#ifdef __clang__
|
||||||
# pragma clang diagnostic push
|
# pragma clang diagnostic push
|
||||||
# pragma clang diagnostic ignored "-Wpadded"
|
# pragma clang diagnostic ignored "-Wpadded"
|
||||||
# pragma clang diagnostic ignored "-Wdouble-promotion"
|
// Wdouble-promotion is not supported until 3.8
|
||||||
|
# if (__clang_major__ > 3) || (__clang_major__ == 3 && __clang_minor__ > 7)
|
||||||
|
# pragma clang diagnostic ignored "-Wdouble-promotion"
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "catch.hpp"
|
#include "catch.hpp"
|
||||||
|
Loading…
Reference in New Issue
Block a user