File: X02-DisabledMacros.cpp

package info (click to toggle)
gringo 5.8.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 32,128 kB
  • sloc: cpp: 210,867; ansic: 37,507; python: 11,271; yacc: 825; javascript: 627; sh: 368; xml: 364; makefile: 102
file content (79 lines) | stat: -rw-r--r-- 2,220 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79

//              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

/**\file
 * Test that CATCH_CONFIG_DISABLE turns off TEST_CASE autoregistration
 * and expressions in assertion macros are not run.
 */

#include <catch2/benchmark/catch_benchmark.hpp>
#include <catch2/catch_test_macros.hpp>
#include <catch2/matchers/catch_matchers.hpp>
#include <catch2/matchers/catch_matchers_predicate.hpp>

#include <iostream>

struct foo {
    foo() { REQUIRE_NOTHROW( print() ); }
    void print() const { std::cout << "This should not happen\n"; }
};

#if defined( __clang__ )
#    pragma clang diagnostic push
#    pragma clang diagnostic ignored "-Wglobal-constructors"
#endif
// Construct foo, but `foo::print` should not be run
static foo f;

#if defined( __clang__ )
// The test is unused since the registration is disabled
#    pragma clang diagnostic ignored "-Wunused-function"
#endif

// This test should not be run, because it won't be registered
TEST_CASE( "Disabled Macros" ) {
    CHECK( 1 == 2 );
    REQUIRE( 1 == 2 );
    std::cout << "This should not happen\n";
    FAIL();

    // Test that static assertions don't fire when macros are disabled
    STATIC_CHECK( 0 == 1 );
    STATIC_REQUIRE( !true );

    CAPTURE( 1 );
    CAPTURE( 1, "captured" );

    REQUIRE_THAT( 1,
                  Catch::Matchers::Predicate( []( int ) { return false; } ) );
    BENCHMARK( "Disabled benchmark" ) { REQUIRE( 1 == 2 ); };
}

struct DisabledFixture {};

TEST_CASE_PERSISTENT_FIXTURE( DisabledFixture, "Disabled Persistent Fixture" ) {
    CHECK( 1 == 2 );
    REQUIRE( 1 == 2 );
    std::cout << "This should not happen\n";
    FAIL();

    // Test that static assertions don't fire when macros are disabled
    STATIC_CHECK( 0 == 1 );
    STATIC_REQUIRE( !true );

    CAPTURE( 1 );
    CAPTURE( 1, "captured" );

    REQUIRE_THAT( 1,
                  Catch::Matchers::Predicate( []( int ) { return false; } ) );
    BENCHMARK( "Disabled benchmark" ) { REQUIRE( 1 == 2 ); };
}

#if defined( __clang__ )
#    pragma clang diagnostic pop
#endif