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

Side by Side Diff: pydir/build-runtime.py

Issue 973823003: Subzero: Run sandboxed cross tests, and do some cleanup. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix TODO. Fix accidentally reverted required change. Created 5 years, 9 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 unified diff | Download patch
« no previous file with comments | « crosstest/test_vector_ops.ll ('k') | pydir/crosstest.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python2 1 #!/usr/bin/env python2
2 2
3 import argparse 3 import argparse
4 import os 4 import os
5 import shutil 5 import shutil
6 import tempfile 6 import tempfile
7 from utils import shellcmd 7 from utils import shellcmd
8 from utils import FindBaseNaCl 8 from utils import FindBaseNaCl
9 9
10 def Translate(ll_files, extra_args, obj, verbose): 10 def Translate(ll_files, extra_args, obj, verbose):
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 '-pnacl-abi-simplify-postopt', 67 '-pnacl-abi-simplify-postopt',
68 '-pnaclabi-allow-debug-metadata', 68 '-pnaclabi-allow-debug-metadata',
69 '{dir}/szrt.tmp.bc'.format(dir=tempdir), 69 '{dir}/szrt.tmp.bc'.format(dir=tempdir),
70 '-S', 70 '-S',
71 '-o', '{dir}/szrt.ll'.format(dir=tempdir) 71 '-o', '{dir}/szrt.ll'.format(dir=tempdir)
72 ], echo=args.verbose) 72 ], echo=args.verbose)
73 ll_files = ['{dir}/szrt.ll'.format(dir=tempdir), 73 ll_files = ['{dir}/szrt.ll'.format(dir=tempdir),
74 '{srcdir}/szrt_ll.ll'.format(srcdir=srcdir)] 74 '{srcdir}/szrt_ll.ll'.format(srcdir=srcdir)]
75 # Translate tempdir/szrt.ll and srcdir/szrt_ll.ll to szrt_native_x8632.o 75 # Translate tempdir/szrt.ll and srcdir/szrt_ll.ll to szrt_native_x8632.o
76 Translate(ll_files, 76 Translate(ll_files,
77 ['-mtriple=i386-unknown-linux-gnu', '-mcpu=pentium4m'], 77 ['-mtriple=i686', '-mcpu=pentium4m'],
78 '{rtdir}/szrt_native_x8632.o'.format(rtdir=rtdir), 78 '{rtdir}/szrt_native_x8632.o'.format(rtdir=rtdir),
79 args.verbose) 79 args.verbose)
80 # Translate tempdir/szrt.ll and srcdir/szrt_ll.ll to szrt_sb_x8632.o 80 # Translate tempdir/szrt.ll and srcdir/szrt_ll.ll to szrt_sb_x8632.o
81 Translate(ll_files, 81 Translate(ll_files,
82 ['-mtriple=i686-none-nacl-gnu', '-mcpu=pentium4m'], 82 ['-mtriple=i686-nacl', '-mcpu=pentium4m'],
83 '{rtdir}/szrt_sb_x8632.o'.format(rtdir=rtdir), 83 '{rtdir}/szrt_sb_x8632.o'.format(rtdir=rtdir),
84 args.verbose) 84 args.verbose)
85 finally: 85 finally:
86 try: 86 try:
87 shutil.rmtree(tempdir) 87 shutil.rmtree(tempdir)
88 except OSError as exc: 88 except OSError as exc:
89 if exc.errno != errno.ENOENT: # ENOENT - no such file or directory 89 if exc.errno != errno.ENOENT: # ENOENT - no such file or directory
90 raise # re-raise exception 90 raise # re-raise exception
91 91
92 if __name__ == '__main__': 92 if __name__ == '__main__':
93 main() 93 main()
OLDNEW
« no previous file with comments | « crosstest/test_vector_ops.ll ('k') | pydir/crosstest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698