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

Side by Side Diff: src/trusted/validator_ragel/unreviewed/validator_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 # Copyright (c) 2011 The Native Client Authors. All rights reserved. 1 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This validator test was taken from branch "x86-64" in the repo: 5 # This validator test was taken from branch "x86-64" in the repo:
6 # https://github.com/mseaborn/x86-decoder 6 # https://github.com/mseaborn/x86-decoder
7 # The test was modified to address intentional validator differences. 7 # The test was modified to address intentional validator differences.
8 8
9 import subprocess 9 import subprocess
10 10
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 247
248 248
249 def Main(): 249 def Main():
250 for test_case in test_cases: 250 for test_case in test_cases:
251 test_case() 251 test_case()
252 print 'PASS' 252 print 'PASS'
253 253
254 254
255 if __name__ == '__main__': 255 if __name__ == '__main__':
256 Main() 256 Main()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698