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

Unified Diff: Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_multipart_unittest.py

Issue 518363002: Add a test to verify that the breakpad symbol-generating script actually exists. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_multipart_unittest.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_multipart_unittest.py b/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_multipart_unittest.py
index 71ec3eab407af1cbd506ec3ce988fd7379f32b58..c849c914cc147762ad7b76a51afb7a0db8566e5c 100644
--- a/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_multipart_unittest.py
+++ b/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_multipart_unittest.py
@@ -30,6 +30,7 @@ import unittest
import cgi
+from webkitpy.common.host import Host
from webkitpy.common.host_mock import MockHost
from webkitpy.common.system.executive_mock import MockExecutive
from webkitpy.layout_tests.breakpad.dump_reader_multipart import DumpReaderMultipart
@@ -53,6 +54,11 @@ class TestDumpReaderMultipart(unittest.TestCase):
'--boundary--',
]
+ def test_check_generate_breakpad_symbols_actually_exists(self):
+ host = Host()
+ dump_reader = DumpReaderMultipart(host, build_dir=None)
+ self.assertTrue(host.filesystem.exists(dump_reader._path_to_generate_breakpad_symbols()))
+
def test_check_is_functional_breakpad_tools_not_found(self):
host = MockHost()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698