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

Unified Diff: tools/toolchain_tester/toolchain_config.py

Issue 10832040: Support 64-bit reserved_at_zero value nacl-side (Closed) Base URL: http://git.chromium.org/native_client/src/native_client.git@master
Patch Set: inline template digits Created 8 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 | « tests/spec2k/run_all.sh ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/toolchain_tester/toolchain_config.py
diff --git a/tools/toolchain_tester/toolchain_config.py b/tools/toolchain_tester/toolchain_config.py
index 182bed99ef29675543e511888455976393586fcc..ab68e9f501e1b0ade307ad4257be05226149233f 100644
--- a/tools/toolchain_tester/toolchain_config.py
+++ b/tools/toolchain_tester/toolchain_config.py
@@ -59,7 +59,9 @@ LOCAL_GCC = '/usr/bin/gcc'
EMU_SCRIPT = 'toolchain/linux_arm-trusted/run_under_qemu_arm'
-BOOTSTRAP_ARGS = '--r_debug=0xXXXXXXXXXXXXXXXX --reserved_at_zero=0xXXXXXXXX'
+TEMPLATE_DIGITS = 'X' * 16
+BOOTSTRAP_ARGS = '--r_debug=0x%s --reserved_at_zero=0x%s' % (TEMPLATE_DIGITS,
+ TEMPLATE_DIGITS)
BOOTSTRAP_ARM = 'scons-out/opt-linux-arm/staging/nacl_helper_bootstrap'
SEL_LDR_ARM = 'scons-out/opt-linux-arm/staging/sel_ldr'
« no previous file with comments | « tests/spec2k/run_all.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698