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

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

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

Powered by Google App Engine
This is Rietveld 408576698