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

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/example.expected/tester_other_device_failure.json

Issue 1869193003: Remove logcats from instrumentation test run steps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rebase! Created 4 years, 8 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 | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "\nimport os, sys\n\nbuild_path = sys.argv[1]\nif os.path.exists(build_pat h):\n for (path, dir, files) in os.walk(build_path):\n for cur_file in files :\n if cur_file.endswith('index.lock'):\n path_to_file = os.path.joi n(path, cur_file)\n print 'deleting %s' % path_to_file\n os.remove (path_to_file)\n", 6 "\nimport os, sys\n\nbuild_path = sys.argv[1]\nif os.path.exists(build_pat h):\n for (path, dir, files) in os.walk(build_path):\n for cur_file in files :\n if cur_file.endswith('index.lock'):\n path_to_file = os.path.joi n(path, cur_file)\n print 'deleting %s' % path_to_file\n os.remove (path_to_file)\n",
7 "[SLAVE_BUILD]" 7 "[SLAVE_BUILD]"
8 ], 8 ],
9 "cwd": "[SLAVE_BUILD]", 9 "cwd": "[SLAVE_BUILD]",
10 "name": "cleanup index.lock", 10 "name": "cleanup index.lock",
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 "name": "Monkey Test" 358 "name": "Monkey Test"
359 }, 359 },
360 { 360 {
361 "cmd": [ 361 "cmd": [
362 "python", 362 "python",
363 "-u", 363 "-u",
364 "[SLAVE_BUILD]/src/build/android/test_runner.py", 364 "[SLAVE_BUILD]/src/build/android/test_runner.py",
365 "instrumentation", 365 "instrumentation",
366 "--blacklist-file", 366 "--blacklist-file",
367 "[SLAVE_BUILD]/src/out/bad_devices.json", 367 "[SLAVE_BUILD]/src/out/bad_devices.json",
368 "--logcat-output-file",
369 "/path/to/tmp/",
370 "--flakiness-dashboard-server", 368 "--flakiness-dashboard-server",
371 "test-results.appspot.com", 369 "test-results.appspot.com",
372 "-A", 370 "-A",
373 "SmallTest", 371 "SmallTest",
374 "-E", 372 "-E",
375 "FlakyTest", 373 "FlakyTest",
376 "--screenshot", 374 "--screenshot",
377 "--host-driven-root", 375 "--host-driven-root",
378 "[SLAVE_BUILD]/src/chrome/test", 376 "[SLAVE_BUILD]/src/chrome/test",
379 "--test-apk", 377 "--test-apk",
380 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk", 378 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebViewTest.apk",
381 "--apk-under-test", 379 "--apk-under-test",
382 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk", 380 "[SLAVE_BUILD]/src/out/Release/apks/AndroidWebView.apk",
383 "--additional-apk", 381 "--additional-apk",
384 "Additional.apk", 382 "Additional.apk",
385 "--isolate-file-path", 383 "--isolate-file-path",
386 "android_webview/android_webview_test_apk.isolate", 384 "android_webview/android_webview_test_apk.isolate",
387 "--release", 385 "--release",
388 "--official-build" 386 "--official-build"
389 ], 387 ],
390 "cwd": "[SLAVE_BUILD]", 388 "cwd": "[SLAVE_BUILD]",
391 "env": { 389 "env": {
392 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release" 390 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release"
393 }, 391 },
394 "name": "Instrumentation test SmallTest", 392 "name": "Instrumentation test SmallTest"
395 "~followup_annotations": [
396 "@@@STEP_LOG_LINE@logcat@logging...@@@",
397 "@@@STEP_LOG_LINE@logcat@beep@@@",
398 "@@@STEP_LOG_LINE@logcat@boop\bbop@@@",
399 "@@@STEP_LOG_END@logcat@@@"
400 ]
401 }, 393 },
402 { 394 {
403 "cmd": [ 395 "cmd": [
404 "python", 396 "python",
405 "-u", 397 "-u",
406 "[SLAVE_BUILD]/src/build/android/test_runner.py", 398 "[SLAVE_BUILD]/src/build/android/test_runner.py",
407 "gtest", 399 "gtest",
408 "-s", 400 "-s",
409 "unittests", 401 "unittests",
410 "--blacklist-file", 402 "--blacklist-file",
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 468 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
477 }, 469 },
478 "name": "stack_tool_for_asan" 470 "name": "stack_tool_for_asan"
479 }, 471 },
480 { 472 {
481 "name": "$result", 473 "name": "$result",
482 "reason": "Infra Failure: Step('device_status_check') returned 2", 474 "reason": "Infra Failure: Step('device_status_check') returned 2",
483 "status_code": 2 475 "status_code": 2
484 } 476 }
485 ] 477 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698