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

Side by Side Diff: src/trusted/validator_ragel/unreviewed/run_objdump_test.py

Issue 9348082: Move unreviewed files to unreviewed subdirectory (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 8 years, 10 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 | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Checks that known instructions are disassebled identically to "objdump -d". 6 """Checks that known instructions are disassebled identically to "objdump -d".
7 7
8 The single-threaded generator produces byte sequences of all instructions it 8 The single-threaded generator produces byte sequences of all instructions it
9 knows about and emits them in portions, file by file. Process these files in 9 knows about and emits them in portions, file by file. Process these files in
10 parallel. 10 parallel.
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 181
182 # Wait for all threads to finish. 182 # Wait for all threads to finish.
183 gen.join() 183 gen.join()
184 for w in workers: 184 for w in workers:
185 w.join() 185 w.join()
186 return 0 186 return 0
187 187
188 188
189 if __name__ == '__main__': 189 if __name__ == '__main__':
190 sys.exit(Main()) 190 sys.exit(Main())
OLDNEW
« no previous file with comments | « src/trusted/validator_ragel/unreviewed/parse_dfa.py ('k') | src/trusted/validator_ragel/unreviewed/system-instructions.def » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698