Chromium Code Reviews| 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..309e4fa5f7f36efcab676e2b89e092d67d4627eb 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 |
|
Mark Seaborn
2012/07/30 18:51:12
Same nit about spaces
Austin Benson
2012/07/31 23:24:12
Done.
|
| +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' |