Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: base/test/gtest_util.h

Issue 2162053006: Move EXPECT_DCHECK_DEATH from base/task_scheduler and use it in relevant base/ tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undef copied macro after use Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/task_scheduler/test_utils.h ('k') | base/threading/non_thread_safe_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BASE_TEST_GTEST_UTIL_H_ 5 #ifndef BASE_TEST_GTEST_UTIL_H_
6 #define BASE_TEST_GTEST_UTIL_H_ 6 #define BASE_TEST_GTEST_UTIL_H_
7 7
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "base/logging.h"
14 #include "build/build_config.h"
15 #include "testing/gtest/include/gtest/gtest.h"
16
17 // EXPECT/ASSERT_DCHECK_DEATH is intended to replace EXPECT/ASSERT_DEBUG_DEATH
18 // when the death is expected to be caused by a DCHECK. Contrary to
19 // EXPECT/ASSERT_DEBUG_DEATH however, it doesn't execute the statement in non-
20 // dcheck builds as DCHECKs are intended to catch things that should never
21 // happen and as such executing the statement results in undefined behavior
22 // (|statement| is compiled in unsupported configurations nonetheless).
23 // Death tests misbehave on Android.
24 #if DCHECK_IS_ON() && defined(GTEST_HAS_DEATH_TEST) && !defined(OS_ANDROID)
25
26 #define EXPECT_DCHECK_DEATH(statement, regex) EXPECT_DEATH(statement, regex)
27 #define ASSERT_DCHECK_DEATH(statement, regex) ASSERT_DEATH(statement, regex)
28
29 #else
30 // DCHECK_IS_ON() && defined(GTEST_HAS_DEATH_TEST) && !defined(OS_ANDROID)
31
32 // Macro copied from gtest-death-test-internal.h as it's (1) internal for now
33 // and (2) only defined if !GTEST_HAS_DEATH_TEST which is only a subset of the
34 // conditions in which it's needed here.
35 // TODO(gab): Expose macro in upstream gtest repo for consumers like us that
36 // want more specific death tests and remove this hack.
37 # define GTEST_UNSUPPORTED_DEATH_TEST(statement, regex, terminator) \
38 GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
danakj 2016/07/22 21:15:46 While I understand you copy/pasted this out of gte
gab 2016/07/25 15:46:21 I haven't looked into this macro closely so the an
danakj 2016/07/25 18:45:59 In the event that it all goes to ashes, I just pre
gab 2016/07/27 17:00:50 https://cl/128201478 is approved and we have conse
39 if (::testing::internal::AlwaysTrue()) { \
40 GTEST_LOG_(WARNING) \
41 << "Death tests are not supported on this platform.\n" \
42 << "Statement '" #statement "' cannot be verified."; \
43 } else if (::testing::internal::AlwaysFalse()) { \
44 ::testing::internal::RE::PartialMatch(".*", (regex)); \
45 GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
46 terminator; \
47 } else \
danakj 2016/07/22 21:15:46 nit: {}
gab 2016/07/25 15:46:21 This appears to be intentional. It doesn't compile
48 ::testing::Message()
49
50 #define EXPECT_DCHECK_DEATH(statement, regex) \
51 GTEST_UNSUPPORTED_DEATH_TEST(statement, regex, )
52 #define ASSERT_DCHECK_DEATH(statement, regex) \
53 GTEST_UNSUPPORTED_DEATH_TEST(statement, regex, return)
54
55 #undef GTEST_UNSUPPORTED_DEATH_TEST
56
57 #endif
58 // DCHECK_IS_ON() && defined(GTEST_HAS_DEATH_TEST) && !defined(OS_ANDROID)
13 59
14 namespace base { 60 namespace base {
15 61
16 class FilePath; 62 class FilePath;
17 63
18 struct TestIdentifier { 64 struct TestIdentifier {
19 TestIdentifier(); 65 TestIdentifier();
20 TestIdentifier(const TestIdentifier& other); 66 TestIdentifier(const TestIdentifier& other);
21 67
22 std::string test_case_name; 68 std::string test_case_name;
(...skipping 17 matching lines...) Expand all
40 86
41 // Reads the list of gtest-based tests from |path| into |output|. 87 // Reads the list of gtest-based tests from |path| into |output|.
42 // Returns true on success. 88 // Returns true on success.
43 bool ReadTestNamesFromFile( 89 bool ReadTestNamesFromFile(
44 const FilePath& path, 90 const FilePath& path,
45 std::vector<TestIdentifier>* output) WARN_UNUSED_RESULT; 91 std::vector<TestIdentifier>* output) WARN_UNUSED_RESULT;
46 92
47 } // namespace base 93 } // namespace base
48 94
49 #endif // BASE_TEST_GTEST_UTIL_H_ 95 #endif // BASE_TEST_GTEST_UTIL_H_
OLDNEW
« no previous file with comments | « base/task_scheduler/test_utils.h ('k') | base/threading/non_thread_safe_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698