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

Unified Diff: client/site_tests/logging_CrashSender/logging_CrashSender.py

Issue 4168011: autotest: test sig is set correctly (Closed) Base URL: http://git.chromium.org/git/autotest.git@master
Patch Set: Created 10 years, 2 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 | « client/bin/site_crash_test.py ('k') | client/site_tests/logging_KernelCrash/logging_KernelCrash.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/site_tests/logging_CrashSender/logging_CrashSender.py
diff --git a/client/site_tests/logging_CrashSender/logging_CrashSender.py b/client/site_tests/logging_CrashSender/logging_CrashSender.py
index 4c6f06f5a3516f883ae6a0fcb1d7b56b96ed1f94..40586ab7e01cf8b7356ba722a2689b5d2ed60abb 100644
--- a/client/site_tests/logging_CrashSender/logging_CrashSender.py
+++ b/client/site_tests/logging_CrashSender/logging_CrashSender.py
@@ -25,11 +25,11 @@ class logging_CrashSender(site_crash_test.CrashTest):
raise error.TestFail('Missing board name %s in output' %
board_match.group(1))
# Get hwid
- hwclass = 'unknown'
+ hwclass = 'undefined'
if os.path.exists(_HWCLASS_PATH):
hwclass = utils.read_file(_HWCLASS_PATH)
if not ('HWClass: %s' % hwclass) in result['output']:
- raise error.TestFail('Missing hwclass %s in output' % hwclass)
+ raise error.TestFail('Expected hwclass %s in output' % hwclass)
def _check_simple_minidump_send(self, report):
« no previous file with comments | « client/bin/site_crash_test.py ('k') | client/site_tests/logging_KernelCrash/logging_KernelCrash.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698