| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", | 6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", |
| 7 "--master", | 7 "--master", |
| 8 "client.drmemory", | 8 "client.drmemory", |
| 9 "--builder", | 9 "--builder", |
| 10 "linux-cr", | 10 "linux-cr", |
| 11 "--slave", | 11 "--slave", |
| 12 "TestSlave", | 12 "TestSlave", |
| 13 "--spec", | 13 "--spec", |
| 14 "cache_dir = '[ROOT]/b/build/slave/cache_dir'\nsolutions = [{'deps_file':
'.DEPS.git', 'managed': True, 'name': 'dynamorio', 'url': 'https://github.com/Dy
namoRIO/dynamorio.git'}]", | 14 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'manag
ed': True, 'name': 'dynamorio', 'url': 'https://github.com/DynamoRIO/dynamorio.g
it'}]", |
| 15 "--root", | 15 "--root", |
| 16 "dynamorio", | 16 "dynamorio", |
| 17 "--revision_mapping_file", | 17 "--revision_mapping_file", |
| 18 "{}", | 18 "{}", |
| 19 "--git-cache-dir", | 19 "--git-cache-dir", |
| 20 "[ROOT]/b/build/slave/cache_dir", | 20 "[GIT_CACHE]", |
| 21 "--output_json", | 21 "--output_json", |
| 22 "/path/to/tmp/json", | 22 "/path/to/tmp/json", |
| 23 "--revision", | 23 "--revision", |
| 24 "dynamorio@123456789abcdef", | 24 "dynamorio@123456789abcdef", |
| 25 "--force", | 25 "--force", |
| 26 "--output_manifest" | 26 "--output_manifest" |
| 27 ], | 27 ], |
| 28 "cwd": "[SLAVE_BUILD]", |
| 28 "env": { | 29 "env": { |
| 29 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 30 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 30 }, | 31 }, |
| 31 "name": "bot_update", | 32 "name": "bot_update", |
| 32 "~followup_annotations": [ | 33 "~followup_annotations": [ |
| 33 "@@@STEP_TEXT@Some step text@@@", | 34 "@@@STEP_TEXT@Some step text@@@", |
| 34 "@@@STEP_LOG_LINE@json.output@{@@@", | 35 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 35 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", | 36 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", |
| 36 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", | 37 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", |
| 37 "@@@STEP_LOG_LINE@json.output@ \"dynamorio\": \"123456789abcdef\"@@@", | 38 "@@@STEP_LOG_LINE@json.output@ \"dynamorio\": \"123456789abcdef\"@@@", |
| 38 "@@@STEP_LOG_LINE@json.output@ }, @@@", | 39 "@@@STEP_LOG_LINE@json.output@ }, @@@", |
| 39 "@@@STEP_LOG_LINE@json.output@ \"manifest\": {}, @@@", | 40 "@@@STEP_LOG_LINE@json.output@ \"manifest\": {}, @@@", |
| 40 "@@@STEP_LOG_LINE@json.output@ \"patch_failure\": false, @@@", | 41 "@@@STEP_LOG_LINE@json.output@ \"patch_failure\": false, @@@", |
| 41 "@@@STEP_LOG_LINE@json.output@ \"patch_root\": \"dynamorio\", @@@", | 42 "@@@STEP_LOG_LINE@json.output@ \"patch_root\": \"dynamorio\", @@@", |
| 42 "@@@STEP_LOG_LINE@json.output@ \"properties\": {}, @@@", | 43 "@@@STEP_LOG_LINE@json.output@ \"properties\": {}, @@@", |
| 43 "@@@STEP_LOG_LINE@json.output@ \"root\": \"dynamorio\", @@@", | 44 "@@@STEP_LOG_LINE@json.output@ \"root\": \"dynamorio\", @@@", |
| 44 "@@@STEP_LOG_LINE@json.output@ \"step_text\": \"Some step text\"@@@", | 45 "@@@STEP_LOG_LINE@json.output@ \"step_text\": \"Some step text\"@@@", |
| 45 "@@@STEP_LOG_LINE@json.output@}@@@", | 46 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 46 "@@@STEP_LOG_END@json.output@@@" | 47 "@@@STEP_LOG_END@json.output@@@" |
| 47 ] | 48 ] |
| 48 }, | 49 }, |
| 49 { | 50 { |
| 50 "cmd": [ | 51 "cmd": [ |
| 51 "python", | 52 "python", |
| 52 "-u", | 53 "-u", |
| 53 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os.
path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not
a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", | 54 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os.
path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not
a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", |
| 54 "[CWD]/dynamorio", | 55 "[SLAVE_BUILD]/dynamorio", |
| 55 "511" | 56 "511" |
| 56 ], | 57 ], |
| 58 "cwd": "[SLAVE_BUILD]", |
| 57 "name": "makedirs makedirs", | 59 "name": "makedirs makedirs", |
| 58 "~followup_annotations": [ | 60 "~followup_annotations": [ |
| 59 "@@@STEP_LOG_LINE@python.inline@@@@", | 61 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 60 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 62 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
| 61 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 63 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
| 62 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 64 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
| 63 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 65 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
| 64 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 66 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
| 65 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 67 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
| 66 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 68 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
| 67 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 69 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
| 68 "@@@STEP_LOG_END@python.inline@@@" | 70 "@@@STEP_LOG_END@python.inline@@@" |
| 69 ] | 71 ] |
| 70 }, | 72 }, |
| 71 { | 73 { |
| 72 "cmd": [ | 74 "cmd": [ |
| 73 "python", | 75 "python", |
| 74 "-u", | 76 "-u", |
| 75 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os.
path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not
a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", | 77 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os.
path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not
a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", |
| 76 "[CWD]/dynamorio/build", | 78 "[SLAVE_BUILD]/dynamorio/build", |
| 77 "511" | 79 "511" |
| 78 ], | 80 ], |
| 81 "cwd": "[SLAVE_BUILD]", |
| 79 "name": "makedirs makedirs (2)", | 82 "name": "makedirs makedirs (2)", |
| 80 "~followup_annotations": [ | 83 "~followup_annotations": [ |
| 81 "@@@STEP_LOG_LINE@python.inline@@@@", | 84 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 82 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 85 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
| 83 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 86 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
| 84 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 87 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
| 85 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 88 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
| 86 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 89 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
| 87 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 90 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
| 88 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 91 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
| 89 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 92 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
| 90 "@@@STEP_LOG_END@python.inline@@@" | 93 "@@@STEP_LOG_END@python.inline@@@" |
| 91 ] | 94 ] |
| 92 }, | 95 }, |
| 93 { | 96 { |
| 94 "cmd": [ | 97 "cmd": [ |
| 95 "cmake", | 98 "cmake", |
| 96 "..", | 99 "..", |
| 97 "-DDEBUG=OFF" | 100 "-DDEBUG=OFF" |
| 98 ], | 101 ], |
| 99 "cwd": "[CWD]/dynamorio/build", | 102 "cwd": "[SLAVE_BUILD]/dynamorio/build", |
| 100 "name": "Configure release DynamoRIO" | 103 "name": "Configure release DynamoRIO" |
| 101 }, | 104 }, |
| 102 { | 105 { |
| 103 "cmd": [ | 106 "cmd": [ |
| 104 "make", | 107 "make", |
| 105 "-j5" | 108 "-j5" |
| 106 ], | 109 ], |
| 107 "cwd": "[CWD]/dynamorio/build", | 110 "cwd": "[SLAVE_BUILD]/dynamorio/build", |
| 108 "name": "Compile release DynamoRIO" | 111 "name": "Compile release DynamoRIO" |
| 109 }, | 112 }, |
| 110 { | 113 { |
| 111 "cmd": [ | 114 "cmd": [ |
| 112 "bin64/drconfig", | 115 "bin64/drconfig", |
| 113 "-reg", | 116 "-reg", |
| 114 "python", | 117 "python", |
| 115 "-norun", | 118 "-norun", |
| 116 "-v" | 119 "-v" |
| 117 ], | 120 ], |
| 118 "cwd": "[CWD]/dynamorio/build", | 121 "cwd": "[SLAVE_BUILD]/dynamorio/build", |
| 119 "name": "don't follow python" | 122 "name": "don't follow python" |
| 120 }, | 123 }, |
| 121 { | 124 { |
| 122 "cmd": [ | 125 "cmd": [ |
| 123 "xvfb-run", | 126 "xvfb-run", |
| 124 "-a", | 127 "-a", |
| 125 "[CWD]/dynamorio/build/bin64/drrun", | 128 "[SLAVE_BUILD]/dynamorio/build/bin64/drrun", |
| 126 "-stderr_mask", | 129 "-stderr_mask", |
| 127 "12", | 130 "12", |
| 128 "--", | 131 "--", |
| 129 "../../linux-cr-builder/build/src/out/Release/content_shell", | 132 "../../linux-cr-builder/build/src/out/Release/content_shell", |
| 130 "--run-layout-test", | 133 "--run-layout-test", |
| 131 "file:///home/chrome-bot/bb.html" | 134 "file:///home/chrome-bot/bb.html" |
| 132 ], | 135 ], |
| 133 "cwd": "[CWD]/dynamorio", | 136 "cwd": "[SLAVE_BUILD]/dynamorio", |
| 134 "env": { | 137 "env": { |
| 135 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" | 138 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" |
| 136 }, | 139 }, |
| 137 "name": "content_shell" | 140 "name": "content_shell" |
| 138 }, | 141 }, |
| 139 { | 142 { |
| 140 "cmd": [ | 143 "cmd": [ |
| 141 "xvfb-run", | 144 "xvfb-run", |
| 142 "-a", | 145 "-a", |
| 143 "[CWD]/dynamorio/build/bin64/drrun", | 146 "[SLAVE_BUILD]/dynamorio/build/bin64/drrun", |
| 144 "-stderr_mask", | 147 "-stderr_mask", |
| 145 "12", | 148 "12", |
| 146 "--", | 149 "--", |
| 147 "../../linux-cr-builder/build/src/out/Release/base_unittests", | 150 "../../linux-cr-builder/build/src/out/Release/base_unittests", |
| 148 "--gtest_filter=-TraceEventTestFixture.TraceContinuousSampling" | 151 "--gtest_filter=-TraceEventTestFixture.TraceContinuousSampling" |
| 149 ], | 152 ], |
| 150 "cwd": "[CWD]/dynamorio", | 153 "cwd": "[SLAVE_BUILD]/dynamorio", |
| 151 "env": { | 154 "env": { |
| 152 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" | 155 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" |
| 153 }, | 156 }, |
| 154 "name": "base_unittests" | 157 "name": "base_unittests" |
| 155 }, | 158 }, |
| 156 { | 159 { |
| 157 "cmd": [ | 160 "cmd": [ |
| 158 "xvfb-run", | 161 "xvfb-run", |
| 159 "-a", | 162 "-a", |
| 160 "[CWD]/dynamorio/build/bin64/drrun", | 163 "[SLAVE_BUILD]/dynamorio/build/bin64/drrun", |
| 161 "-stderr_mask", | 164 "-stderr_mask", |
| 162 "12", | 165 "12", |
| 163 "--", | 166 "--", |
| 164 "../../linux-cr-builder/build/src/out/Release/browser_tests", | 167 "../../linux-cr-builder/build/src/out/Release/browser_tests", |
| 165 "--gtest_filter=AutofillTest.BasicFormFill" | 168 "--gtest_filter=AutofillTest.BasicFormFill" |
| 166 ], | 169 ], |
| 167 "cwd": "[CWD]/dynamorio", | 170 "cwd": "[SLAVE_BUILD]/dynamorio", |
| 168 "env": { | 171 "env": { |
| 169 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" | 172 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" |
| 170 }, | 173 }, |
| 171 "name": "browser_tests" | 174 "name": "browser_tests" |
| 172 }, | 175 }, |
| 173 { | 176 { |
| 174 "cmd": [ | 177 "cmd": [ |
| 175 "xvfb-run", | 178 "xvfb-run", |
| 176 "-a", | 179 "-a", |
| 177 "[CWD]/dynamorio/build/bin64/drrun", | 180 "[SLAVE_BUILD]/dynamorio/build/bin64/drrun", |
| 178 "-stderr_mask", | 181 "-stderr_mask", |
| 179 "12", | 182 "12", |
| 180 "--", | 183 "--", |
| 181 "../../linux-cr-builder/build/src/out/Release/crypto_unittests" | 184 "../../linux-cr-builder/build/src/out/Release/crypto_unittests" |
| 182 ], | 185 ], |
| 183 "cwd": "[CWD]/dynamorio", | 186 "cwd": "[SLAVE_BUILD]/dynamorio", |
| 184 "env": { | 187 "env": { |
| 185 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" | 188 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" |
| 186 }, | 189 }, |
| 187 "name": "crypto_unittests" | 190 "name": "crypto_unittests" |
| 188 }, | 191 }, |
| 189 { | 192 { |
| 190 "cmd": [ | 193 "cmd": [ |
| 191 "xvfb-run", | 194 "xvfb-run", |
| 192 "-a", | 195 "-a", |
| 193 "[CWD]/dynamorio/build/bin64/drrun", | 196 "[SLAVE_BUILD]/dynamorio/build/bin64/drrun", |
| 194 "-stderr_mask", | 197 "-stderr_mask", |
| 195 "12", | 198 "12", |
| 196 "--", | 199 "--", |
| 197 "../../linux-cr-builder/build/src/out/Release/ipc_tests" | 200 "../../linux-cr-builder/build/src/out/Release/ipc_tests" |
| 198 ], | 201 ], |
| 199 "cwd": "[CWD]/dynamorio", | 202 "cwd": "[SLAVE_BUILD]/dynamorio", |
| 200 "env": { | 203 "env": { |
| 201 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" | 204 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" |
| 202 }, | 205 }, |
| 203 "name": "ipc_tests" | 206 "name": "ipc_tests" |
| 204 }, | 207 }, |
| 205 { | 208 { |
| 206 "cmd": [ | 209 "cmd": [ |
| 207 "xvfb-run", | 210 "xvfb-run", |
| 208 "-a", | 211 "-a", |
| 209 "[CWD]/dynamorio/build/bin64/drrun", | 212 "[SLAVE_BUILD]/dynamorio/build/bin64/drrun", |
| 210 "-stderr_mask", | 213 "-stderr_mask", |
| 211 "12", | 214 "12", |
| 212 "--", | 215 "--", |
| 213 "../../linux-cr-builder/build/src/out/Release/media_unittests" | 216 "../../linux-cr-builder/build/src/out/Release/media_unittests" |
| 214 ], | 217 ], |
| 215 "cwd": "[CWD]/dynamorio", | 218 "cwd": "[SLAVE_BUILD]/dynamorio", |
| 216 "env": { | 219 "env": { |
| 217 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" | 220 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" |
| 218 }, | 221 }, |
| 219 "name": "media_unittests" | 222 "name": "media_unittests" |
| 220 }, | 223 }, |
| 221 { | 224 { |
| 222 "cmd": [ | 225 "cmd": [ |
| 223 "xvfb-run", | 226 "xvfb-run", |
| 224 "-a", | 227 "-a", |
| 225 "[CWD]/dynamorio/build/bin64/drrun", | 228 "[SLAVE_BUILD]/dynamorio/build/bin64/drrun", |
| 226 "-stderr_mask", | 229 "-stderr_mask", |
| 227 "12", | 230 "12", |
| 228 "--", | 231 "--", |
| 229 "../../linux-cr-builder/build/src/out/Release/net_unittests", | 232 "../../linux-cr-builder/build/src/out/Release/net_unittests", |
| 230 "--gtest_filter=-CertDatabaseNSSTest.ImportCACertHierarchy*" | 233 "--gtest_filter=-CertDatabaseNSSTest.ImportCACertHierarchy*" |
| 231 ], | 234 ], |
| 232 "cwd": "[CWD]/dynamorio", | 235 "cwd": "[SLAVE_BUILD]/dynamorio", |
| 233 "env": { | 236 "env": { |
| 234 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" | 237 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" |
| 235 }, | 238 }, |
| 236 "name": "net_unittests" | 239 "name": "net_unittests" |
| 237 }, | 240 }, |
| 238 { | 241 { |
| 239 "cmd": [ | 242 "cmd": [ |
| 240 "xvfb-run", | 243 "xvfb-run", |
| 241 "-a", | 244 "-a", |
| 242 "[CWD]/dynamorio/build/bin64/drrun", | 245 "[SLAVE_BUILD]/dynamorio/build/bin64/drrun", |
| 243 "-stderr_mask", | 246 "-stderr_mask", |
| 244 "12", | 247 "12", |
| 245 "--", | 248 "--", |
| 246 "../../linux-cr-builder/build/src/out/Release/printing_unittests" | 249 "../../linux-cr-builder/build/src/out/Release/printing_unittests" |
| 247 ], | 250 ], |
| 248 "cwd": "[CWD]/dynamorio", | 251 "cwd": "[SLAVE_BUILD]/dynamorio", |
| 249 "env": { | 252 "env": { |
| 250 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" | 253 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" |
| 251 }, | 254 }, |
| 252 "name": "printing_unittests" | 255 "name": "printing_unittests" |
| 253 }, | 256 }, |
| 254 { | 257 { |
| 255 "cmd": [ | 258 "cmd": [ |
| 256 "xvfb-run", | 259 "xvfb-run", |
| 257 "-a", | 260 "-a", |
| 258 "[CWD]/dynamorio/build/bin64/drrun", | 261 "[SLAVE_BUILD]/dynamorio/build/bin64/drrun", |
| 259 "-stderr_mask", | 262 "-stderr_mask", |
| 260 "12", | 263 "12", |
| 261 "--", | 264 "--", |
| 262 "../../linux-cr-builder/build/src/out/Release/remoting_unittests", | 265 "../../linux-cr-builder/build/src/out/Release/remoting_unittests", |
| 263 "--gtest_filter=-VideoFrameCapturerTest.Capture:DesktopProcessTest.DeathTe
st" | 266 "--gtest_filter=-VideoFrameCapturerTest.Capture:DesktopProcessTest.DeathTe
st" |
| 264 ], | 267 ], |
| 265 "cwd": "[CWD]/dynamorio", | 268 "cwd": "[SLAVE_BUILD]/dynamorio", |
| 266 "env": { | 269 "env": { |
| 267 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" | 270 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" |
| 268 }, | 271 }, |
| 269 "name": "remoting_unittests" | 272 "name": "remoting_unittests" |
| 270 }, | 273 }, |
| 271 { | 274 { |
| 272 "cmd": [ | 275 "cmd": [ |
| 273 "xvfb-run", | 276 "xvfb-run", |
| 274 "-a", | 277 "-a", |
| 275 "[CWD]/dynamorio/build/bin64/drrun", | 278 "[SLAVE_BUILD]/dynamorio/build/bin64/drrun", |
| 276 "-stderr_mask", | 279 "-stderr_mask", |
| 277 "12", | 280 "12", |
| 278 "--", | 281 "--", |
| 279 "../../linux-cr-builder/build/src/out/Release/sql_unittests" | 282 "../../linux-cr-builder/build/src/out/Release/sql_unittests" |
| 280 ], | 283 ], |
| 281 "cwd": "[CWD]/dynamorio", | 284 "cwd": "[SLAVE_BUILD]/dynamorio", |
| 282 "env": { | 285 "env": { |
| 283 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" | 286 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" |
| 284 }, | 287 }, |
| 285 "name": "sql_unittests" | 288 "name": "sql_unittests" |
| 286 }, | 289 }, |
| 287 { | 290 { |
| 288 "cmd": [ | 291 "cmd": [ |
| 289 "xvfb-run", | 292 "xvfb-run", |
| 290 "-a", | 293 "-a", |
| 291 "[CWD]/dynamorio/build/bin64/drrun", | 294 "[SLAVE_BUILD]/dynamorio/build/bin64/drrun", |
| 292 "-stderr_mask", | 295 "-stderr_mask", |
| 293 "12", | 296 "12", |
| 294 "--", | 297 "--", |
| 295 "../../linux-cr-builder/build/src/out/Release/unit_tests" | 298 "../../linux-cr-builder/build/src/out/Release/unit_tests" |
| 296 ], | 299 ], |
| 297 "cwd": "[CWD]/dynamorio", | 300 "cwd": "[SLAVE_BUILD]/dynamorio", |
| 298 "env": { | 301 "env": { |
| 299 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" | 302 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" |
| 300 }, | 303 }, |
| 301 "name": "unit_tests" | 304 "name": "unit_tests" |
| 302 }, | 305 }, |
| 303 { | 306 { |
| 304 "cmd": [ | 307 "cmd": [ |
| 305 "xvfb-run", | 308 "xvfb-run", |
| 306 "-a", | 309 "-a", |
| 307 "[CWD]/dynamorio/build/bin64/drrun", | 310 "[SLAVE_BUILD]/dynamorio/build/bin64/drrun", |
| 308 "-stderr_mask", | 311 "-stderr_mask", |
| 309 "12", | 312 "12", |
| 310 "--", | 313 "--", |
| 311 "../../linux-cr-builder/build/src/out/Release/url_unittests" | 314 "../../linux-cr-builder/build/src/out/Release/url_unittests" |
| 312 ], | 315 ], |
| 313 "cwd": "[CWD]/dynamorio", | 316 "cwd": "[SLAVE_BUILD]/dynamorio", |
| 314 "env": { | 317 "env": { |
| 315 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" | 318 "CHROME_DEVEL_SANDBOX": "/opt/chromium/chrome_sandbox" |
| 316 }, | 319 }, |
| 317 "name": "url_unittests" | 320 "name": "url_unittests" |
| 318 }, | 321 }, |
| 319 { | 322 { |
| 320 "name": "$result", | 323 "name": "$result", |
| 321 "recipe_result": null, | 324 "recipe_result": null, |
| 322 "status_code": 0 | 325 "status_code": 0 |
| 323 } | 326 } |
| 324 ] | 327 ] |
| OLD | NEW |