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

Unified Diff: PRESUBMIT_test.py

Issue 2866163002: Update stability report dumper so it handles non-postmortem minidumps (Closed)
Patch Set: presubmit changes Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « PRESUBMIT.py ('k') | components/browser_watcher/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PRESUBMIT_test.py
diff --git a/PRESUBMIT_test.py b/PRESUBMIT_test.py
index fdca995486edb691cee55783fb426ecec215ba7b..dd501604d402ae0efae9496e8492488f8608f51a 100755
--- a/PRESUBMIT_test.py
+++ b/PRESUBMIT_test.py
@@ -506,7 +506,7 @@ class CheckAddedDepsHaveTetsApprovalsTest(unittest.TestCase):
'+grit/",',
'+jni/fooblat.h',
'+policy',
- '+third_party/WebKit',
+ '+' + os.path.join('third_party', 'WebKit'),
]
new_specific_include_rules = {
'compositor\.*': {
@@ -518,11 +518,11 @@ class CheckAddedDepsHaveTetsApprovalsTest(unittest.TestCase):
}
expected = set([
- 'chrome/DEPS',
- 'gpu/DEPS',
- 'components/DEPS',
- 'policy/DEPS',
- 'third_party/WebKit/DEPS',
+ os.path.join('chrome', 'DEPS'),
+ os.path.join('gpu', 'DEPS'),
+ os.path.join('components', 'DEPS'),
+ os.path.join('policy', 'DEPS'),
+ os.path.join('third_party', 'WebKit', 'DEPS'),
])
self.assertEqual(
expected,
« no previous file with comments | « PRESUBMIT.py ('k') | components/browser_watcher/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698