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

Unified Diff: tools/llvm/utman-test.sh

Issue 7363011: Always run browser tests with -j1. This should unbreak the PNaCl toolchain builders. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/llvm/utman-test.sh
===================================================================
--- tools/llvm/utman-test.sh (revision 6037)
+++ tools/llvm/utman-test.sh (working copy)
@@ -228,22 +228,25 @@
# buildbot_toolchain_arm_untrusted.sh use the same tests directly.
# TODO(jvoung): remove these when unified.
+# scons browser-tests are currently broken with concurrency, so use -j1
+# BUG= http://code.google.com/p/nativeclient/issues/detail?id=2019
+
#@ test-arm-browser - run arm browser tests via pnacl toolchain.
test-arm-browser() {
${OTHER_TEST_SCRIPT} browser-tests "arm" \
- "--mode=opt-host,nacl -j${UTMAN_CONCURRENCY}"
+ "--mode=opt-host,nacl -j1"
}
#@ test-x86-32-browser - run x86-32 browser tests via pnacl toolchain.
test-x86-32-browser() {
${OTHER_TEST_SCRIPT} browser-tests "x86-32" \
- "--mode=opt-host,nacl -j${UTMAN_CONCURRENCY}"
+ "--mode=opt-host,nacl -j1"
}
#@ test-x86-64-browser - run all x86-64 browser tests via pnacl toolchain.
test-x86-64-browser() {
${OTHER_TEST_SCRIPT} browser-tests "x86-64" \
- "--mode=opt-host,nacl -j${UTMAN_CONCURRENCY}"
+ "--mode=opt-host,nacl -j1"
}
#@ test-all - run arm, x86-32, and x86-64 tests. (all should pass)
« 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