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

Side by Side Diff: tools/run-deopt-fuzzer.py

Issue 23708055: Skip tests failing on the no-i18n bot (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updates Created 7 years, 3 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
« no previous file with comments | « test/test262/test262.status ('k') | tools/run-tests.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 python 1 #!/usr/bin/env python
2 # 2 #
3 # Copyright 2012 the V8 project authors. All rights reserved. 3 # Copyright 2012 the V8 project authors. All rights reserved.
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 options.extra_flags, 361 options.extra_flags,
362 False) 362 False)
363 363
364 # Find available test suites and read test cases from them. 364 # Find available test suites and read test cases from them.
365 variables = { 365 variables = {
366 "mode": mode, 366 "mode": mode,
367 "arch": arch, 367 "arch": arch,
368 "system": utils.GuessOS(), 368 "system": utils.GuessOS(),
369 "isolates": options.isolates, 369 "isolates": options.isolates,
370 "deopt_fuzzer": True, 370 "deopt_fuzzer": True,
371 "no_i18n": False,
371 } 372 }
372 all_tests = [] 373 all_tests = []
373 num_tests = 0 374 num_tests = 0
374 test_id = 0 375 test_id = 0
375 376
376 # Remember test case prototypes for the fuzzing phase. 377 # Remember test case prototypes for the fuzzing phase.
377 test_backup = dict((s, []) for s in suites) 378 test_backup = dict((s, []) for s in suites)
378 379
379 for s in suites: 380 for s in suites:
380 s.ReadStatusFile(variables) 381 s.ReadStatusFile(variables)
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 return exit_code 460 return exit_code
460 461
461 except KeyboardInterrupt: 462 except KeyboardInterrupt:
462 return 1 463 return 1
463 464
464 return exit_code 465 return exit_code
465 466
466 467
467 if __name__ == "__main__": 468 if __name__ == "__main__":
468 sys.exit(Main()) 469 sys.exit(Main())
OLDNEW
« no previous file with comments | « test/test262/test262.status ('k') | tools/run-tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698