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

Unified Diff: buildbot/buildbot_toolchain_arm_untrusted.sh

Issue 8391032: Part 2 of 3: Moving tools/llvm to pnacl/ (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 2 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 | « buildbot/buildbot_spec2k.sh ('k') | pnacl/build.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: buildbot/buildbot_toolchain_arm_untrusted.sh
===================================================================
--- buildbot/buildbot_toolchain_arm_untrusted.sh (revision 7025)
+++ buildbot/buildbot_toolchain_arm_untrusted.sh (working copy)
@@ -36,8 +36,8 @@
fi
echo "*** ARGUMENTS : $*"
-UTMAN="tools/llvm/utman.sh"
-UTMAN_TEST="tools/llvm/utman-test.sh"
+PNACL_BUILD="pnacl/build.sh"
+PNACL_TEST="pnacl/test.sh"
# On some systems (e.g., windows 64-bit), we must build a 32-bit plugin
# because the browser is 32-bit. Only sel_ldr and the nexes are 64-bit.
@@ -53,7 +53,7 @@
;;
linux-32-glibc)
TOOLCHAIN_LABEL=pnacl_linux_i686_glibc
- UTMAN="tools/llvm/gutman.sh"
+ PNACL_BUILD="pnacl/build-glibc.sh"
# TODO(pdox): Determine which tests should be run.
RUN_TESTS=""
;;
@@ -65,22 +65,22 @@
;;
linux-64-glibc)
TOOLCHAIN_LABEL=pnacl_linux_x86_64_glibc
- UTMAN="tools/llvm/gutman.sh"
+ PNACL_BUILD="pnacl/build-glibc.sh"
RUN_TESTS=""
RUN_TESTS="x86-32-glibc x86-32-browser-glibc"
RUN_TESTS+=" x86-64-glibc x86-64-browser-glibc"
;;
mac-32-newlib)
- export UTMAN_VERBOSE=true # To avoid timing out, since this bot is slow.
+ export PNACL_VERBOSE=true # To avoid timing out, since this bot is slow.
# We can't test ARM because we do not have QEMU for Mac.
# We can't test X86-64 because NaCl X86-64 Mac support is not in good shape.
TOOLCHAIN_LABEL=pnacl_darwin_i386_newlib
RUN_TESTS="x86-32 x86-32-pic x86-32-browser"
;;
mac-32-glibc)
- export UTMAN_VERBOSE=true
+ export PNACL_VERBOSE=true
TOOLCHAIN_LABEL=pnacl_darwin_i386_glibc
- UTMAN="tools/llvm/gutman.sh"
+ PNACL_BUILD="pnacl/build-glibc.sh"
# TODO(pdox): Determine which tests should be run.
RUN_TESTS=""
;;
@@ -115,10 +115,11 @@
rm -rf toolchain/test-log
echo @@@BUILD_STEP show-config@@@
-UTMAN_BUILDBOT=true UTMAN_PRUNE=true ${UTMAN} show-config
+PNACL_BUILDBOT=true PNACL_PRUNE=true ${PNACL_BUILD} show-config
echo @@@BUILD_STEP compile_toolchain@@@
-UTMAN_BUILDBOT=true UTMAN_PRUNE=true ${UTMAN} untrusted_sdk pnacl-toolchain.tgz
+PNACL_BUILDBOT=true PNACL_PRUNE=true \
+ ${PNACL_BUILD} untrusted_sdk pnacl-toolchain.tgz
chmod a+r pnacl-toolchain.tgz
echo @@@BUILD_STEP untar_toolchain@@@
@@ -148,7 +149,7 @@
for arch in ${RUN_TESTS} ; do
echo @@@BUILD_STEP test-${arch}@@@
- UTMAN_BUILDBOT=true ${UTMAN_TEST} test-${arch} ||
+ PNACL_BUILDBOT=true ${PNACL_TEST} test-${arch} ||
{ RETCODE=$? && echo @@@STEP_FAILURE@@@;}
done
« no previous file with comments | « buildbot/buildbot_spec2k.sh ('k') | pnacl/build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698