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

Unified Diff: pydir/crosstest.py

Issue 2519863002: Subzero, MIPS32: Changes for improving sandbox crosstest results (Closed)
Patch Set: Addressed review comments Created 4 years, 1 month 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 | « crosstest/test_calling_conv_main.cpp ('k') | pydir/crosstest_generator.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pydir/crosstest.py
diff --git a/pydir/crosstest.py b/pydir/crosstest.py
index 075102cc1ec05455f2c394abce2302f4260dc918..6f8ed5716710cc05d7f13b78265ad3284ce5f8c7 100755
--- a/pydir/crosstest.py
+++ b/pydir/crosstest.py
@@ -158,7 +158,9 @@ def main():
bitcode] + arch_sz_flags[args.target])
if args.filetype != 'obj':
shellcmd(['{bin}/llvm-mc'.format(bin=bindir),
- '-triple=' + triple,
+ '-triple=' + ('mipsel-linux-gnu'
+ if args.target == 'mips32' and args.sandbox
+ else triple),
'-filetype=obj',
'-o=' + obj_sz,
asm_sz])
« no previous file with comments | « crosstest/test_calling_conv_main.cpp ('k') | pydir/crosstest_generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698