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

Side by Side Diff: buildbot/buildbot_spec2k.sh

Issue 1047543002: Add Subzero to x86-32 specbot testing. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 set -o xtrace 6 set -o xtrace
7 set -o nounset 7 set -o nounset
8 set -o errexit 8 set -o errexit
9 9
10 ###################################################################### 10 ######################################################################
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 build-tests SetupPnaclTranslatorFast1ThreadArmOptHW "${TRYBOT_TESTS}" 1 1 288 build-tests SetupPnaclTranslatorFast1ThreadArmOptHW "${TRYBOT_TESTS}" 1 1
289 run-tests SetupPnaclTranslatorFast1ThreadArmOptHW "${TRYBOT_TESTS}" 1 1 289 run-tests SetupPnaclTranslatorFast1ThreadArmOptHW "${TRYBOT_TESTS}" 1 1
290 } 290 }
291 291
292 pnacl-trybot-x8632() { 292 pnacl-trybot-x8632() {
293 clobber 293 clobber
294 download-spec2k-harness 294 download-spec2k-harness
295 build-prerequisites "x86-32" "bitcode" 295 build-prerequisites "x86-32" "bitcode"
296 build-tests SetupPnaclX8632Opt "${TRYBOT_TESTS}" 1 1 296 build-tests SetupPnaclX8632Opt "${TRYBOT_TESTS}" 1 1
297 run-tests SetupPnaclX8632Opt "${TRYBOT_TESTS}" 1 1 297 run-tests SetupPnaclX8632Opt "${TRYBOT_TESTS}" 1 1
298 build-tests SetupPnaclX8632OptSz "${TRYBOT_TESTS}" 1 1
299 run-tests SetupPnaclX8632OptSz "${TRYBOT_TESTS}" 1 1
298 build-tests SetupPnaclTranslatorX8632Opt "${TRYBOT_TESTS}" 1 1 300 build-tests SetupPnaclTranslatorX8632Opt "${TRYBOT_TESTS}" 1 1
299 run-tests SetupPnaclTranslatorX8632Opt "${TRYBOT_TESTS}" 1 1 301 run-tests SetupPnaclTranslatorX8632Opt "${TRYBOT_TESTS}" 1 1
300 build-tests SetupPnaclTranslator1ThreadX8632Opt "${TRYBOT_TESTS}" 1 1 302 build-tests SetupPnaclTranslator1ThreadX8632Opt "${TRYBOT_TESTS}" 1 1
301 run-tests SetupPnaclTranslator1ThreadX8632Opt "${TRYBOT_TESTS}" 1 1 303 run-tests SetupPnaclTranslator1ThreadX8632Opt "${TRYBOT_TESTS}" 1 1
302 build-tests SetupPnaclTranslatorFastX8632Opt "${TRYBOT_TESTS}" 1 1 304 build-tests SetupPnaclTranslatorFastX8632Opt "${TRYBOT_TESTS}" 1 1
303 run-tests SetupPnaclTranslatorFastX8632Opt "${TRYBOT_TESTS}" 1 1 305 run-tests SetupPnaclTranslatorFastX8632Opt "${TRYBOT_TESTS}" 1 1
304 build-tests SetupPnaclTranslatorFast1ThreadX8632Opt "${TRYBOT_TESTS}" 1 1 306 build-tests SetupPnaclTranslatorFast1ThreadX8632Opt "${TRYBOT_TESTS}" 1 1
305 run-tests SetupPnaclTranslatorFast1ThreadX8632Opt "${TRYBOT_TESTS}" 1 1 307 run-tests SetupPnaclTranslatorFast1ThreadX8632Opt "${TRYBOT_TESTS}" 1 1
306 build-validator x86-32 308 build-validator x86-32
307 download-validator-test-nexes x86-32 309 download-validator-test-nexes x86-32
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 build-validator x86-64 388 build-validator x86-64
387 download-validator-test-nexes x86-64 389 download-validator-test-nexes x86-64
388 measure-validator-speed x86-64 390 measure-validator-speed x86-64
389 } 391 }
390 392
391 pnacl-x8632() { 393 pnacl-x8632() {
392 clobber 394 clobber
393 download-spec2k-harness 395 download-spec2k-harness
394 build-prerequisites "x86-32" "bitcode" 396 build-prerequisites "x86-32" "bitcode"
395 local setups="SetupPnaclX8632Opt \ 397 local setups="SetupPnaclX8632Opt \
398 SetupPnaclX8632OptSz \
396 SetupPnaclTranslatorX8632Opt \ 399 SetupPnaclTranslatorX8632Opt \
397 SetupPnaclTranslator1ThreadX8632Opt \ 400 SetupPnaclTranslator1ThreadX8632Opt \
398 SetupPnaclTranslatorFastX8632Opt \ 401 SetupPnaclTranslatorFastX8632Opt \
399 SetupPnaclTranslatorFast1ThreadX8632Opt" 402 SetupPnaclTranslatorFast1ThreadX8632Opt"
400 build-tests "${setups}" all 1 3 403 build-tests "${setups}" all 1 3
401 run-tests "${setups}" all 1 3 404 run-tests "${setups}" all 1 3
402 build-validator x86-32 405 build-validator x86-32
403 download-validator-test-nexes x86-32 406 download-validator-test-nexes x86-32
404 measure-validator-speed x86-32 407 measure-validator-speed x86-32
405 } 408 }
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 exit 1 453 exit 1
451 fi 454 fi
452 455
453 "$@" 456 "$@"
454 457
455 if [[ ${RETCODE} != 0 ]]; then 458 if [[ ${RETCODE} != 0 ]]; then
456 echo "@@@BUILD_STEP summary@@@" 459 echo "@@@BUILD_STEP summary@@@"
457 echo There were failed stages. 460 echo There were failed stages.
458 exit ${RETCODE} 461 exit ${RETCODE}
459 fi 462 fi
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698