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

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

Issue 1898823002: Reland of Switch Android gtests to use generated wrapper scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Add back in a TODO comment 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
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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 "cwd": "[SLAVE_BUILD]", 388 "cwd": "[SLAVE_BUILD]",
389 "env": { 389 "env": {
390 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release" 390 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release"
391 }, 391 },
392 "name": "Instrumentation test SmallTest" 392 "name": "Instrumentation test SmallTest"
393 }, 393 },
394 { 394 {
395 "cmd": [ 395 "cmd": [
396 "python", 396 "python",
397 "-u", 397 "-u",
398 "[SLAVE_BUILD]/src/build/android/test_runner.py", 398 "[SLAVE_BUILD]/src/out/Release/bin/run_unittests",
399 "gtest",
400 "-s",
401 "unittests",
402 "--blacklist-file", 399 "--blacklist-file",
403 "[SLAVE_BUILD]/src/out/bad_devices.json", 400 "[SLAVE_BUILD]/src/out/bad_devices.json",
404 "--verbose", 401 "--verbose",
405 "--release",
406 "--isolate_file_path=[SLAVE_BUILD]/src/some_file.isolate", 402 "--isolate_file_path=[SLAVE_BUILD]/src/some_file.isolate",
407 "--gtest_filter=WebRtc*", 403 "--gtest_filter=WebRtc*",
408 "--tool=asan" 404 "--tool=asan"
409 ], 405 ],
410 "cwd": "[SLAVE_BUILD]", 406 "cwd": "[SLAVE_BUILD]",
411 "env": { 407 "env": {
412 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release",
413 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 408 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
414 }, 409 },
415 "name": "unittests" 410 "name": "unittests"
416 }, 411 },
417 { 412 {
418 "cmd": [ 413 "cmd": [
419 "python", 414 "python",
420 "-u", 415 "-u",
421 "RECIPE_PACKAGE_REPO[build]/scripts/slave/tee.py", 416 "RECIPE_PACKAGE_REPO[build]/scripts/slave/tee.py",
422 "[SLAVE_BUILD]/src/out/Release/full_log", 417 "[SLAVE_BUILD]/src/out/Release/full_log",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 463 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
469 }, 464 },
470 "name": "stack_tool_for_asan" 465 "name": "stack_tool_for_asan"
471 }, 466 },
472 { 467 {
473 "name": "$result", 468 "name": "$result",
474 "reason": "Infra Failure: Step('device_status_check') returned 2", 469 "reason": "Infra Failure: Step('device_status_check') returned 2",
475 "status_code": 2 470 "status_code": 2
476 } 471 }
477 ] 472 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698