aboutsummaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-base_test_test__suite.cc
diff options
context:
space:
mode:
Diffstat (limited to 'www/chromium/files/patch-base_test_test__suite.cc')
-rw-r--r--www/chromium/files/patch-base_test_test__suite.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/www/chromium/files/patch-base_test_test__suite.cc b/www/chromium/files/patch-base_test_test__suite.cc
deleted file mode 100644
index 511cfda2c7e8..000000000000
--- a/www/chromium/files/patch-base_test_test__suite.cc
+++ /dev/null
@@ -1,20 +0,0 @@
---- base/test/test_suite.cc.orig 2022-01-05 13:32:44 UTC
-+++ base/test/test_suite.cc
-@@ -221,7 +221,7 @@ class CheckForLeakedGlobals : public testing::EmptyTes
- };
-
- // base::Process is not available on iOS
--#if !defined(OS_IOS)
-+#if !defined(OS_IOS) && !defined(OS_BSD)
- class CheckProcessPriority : public testing::EmptyTestEventListener {
- public:
- CheckProcessPriority() { CHECK(!IsProcessBackgrounded()); }
-@@ -634,7 +634,7 @@ void TestSuite::Initialize() {
- if (check_for_leaked_globals_)
- listeners.Append(new CheckForLeakedGlobals);
- if (check_for_thread_and_process_priority_) {
--#if !defined(OS_IOS)
-+#if !defined(OS_IOS) && !defined(OS_BSD)
- listeners.Append(new CheckProcessPriority);
- #endif
- }