Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_ (0.65 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    // failures. Note that trapping SEH exceptions is not implemented here.
    # if GTEST_HAS_EXCEPTIONS
    #  define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \
      try { \
        GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
      } catch (const ::std::exception& gtest_exception) { \
        fprintf(\
            stderr, \
            "\n%s: Caught std::exception-derived exception escaping the " \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    // failures. Note that trapping SEH exceptions is not implemented here.
    # if GTEST_HAS_EXCEPTIONS
    #  define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \
      try { \
        GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
      } catch (const ::std::exception& gtest_exception) { \
        fprintf(\
            stderr, \
            "\n%s: Caught std::exception-derived exception escaping the " \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // Suppresses MSVC warnings 4072 (unreachable code) for the code following
    // statement if it returns or throws (or doesn't return or throw in some
    // situations).
    #define GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) \
      if (::testing::internal::AlwaysTrue()) { statement; }
    
    #define GTEST_TEST_THROW_(statement, expected_exception, fail) \
      GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // Suppresses MSVC warnings 4072 (unreachable code) for the code following
    // statement if it returns or throws (or doesn't return or throw in some
    // situations).
    #define GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement) \
      if (::testing::internal::AlwaysTrue()) { statement; }
    
    #define GTEST_TEST_THROW_(statement, expected_exception, fail) \
      GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

    // catches that.
    //
    // For the same reason, we have to write
    //   if (::testing::internal::AlwaysTrue()) { statement; }
    // instead of
    //   GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement)
    // to avoid an MSVC warning on unreachable code.
    #define EXPECT_NONFATAL_FAILURE(statement, substr) \
      do {\
        ::testing::TestPartResultArray gtest_failures;\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

    // catches that.
    //
    // For the same reason, we have to write
    //   if (::testing::internal::AlwaysTrue()) { statement; }
    // instead of
    //   GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement)
    // to avoid an MSVC warning on unreachable code.
    #define EXPECT_NONFATAL_FAILURE(statement, substr) \
      do {\
        ::testing::TestPartResultArray gtest_failures;\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top