Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium 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 import glob | 6 import glob |
| 7 import json | 7 import json |
| 8 import os | 8 import os |
| 9 import re | 9 import re |
| 10 import subprocess | 10 import subprocess |
| (...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 772 'android_fyi_dbg_triggered_tests', | 772 'android_fyi_dbg_triggered_tests', |
| 773 'android_rel', | 773 'android_rel', |
| 774 'android_rel_triggered_tests', | 774 'android_rel_triggered_tests', |
| 775 'android_x86_dbg', | 775 'android_x86_dbg', |
| 776 'blink_android_compile_dbg', | 776 'blink_android_compile_dbg', |
| 777 'blink_android_compile_rel', | 777 'blink_android_compile_rel', |
| 778 'blink_presubmit', | 778 'blink_presubmit', |
| 779 'chromium_presubmit', | 779 'chromium_presubmit', |
| 780 'linux_arm_cross_compile', | 780 'linux_arm_cross_compile', |
| 781 'linux_arm_tester', | 781 'linux_arm_tester', |
| 782 'linux_asan', | |
| 783 'linux_browser_asan', | 782 'linux_browser_asan', |
|
earthdok
2014/10/20 11:57:53
Isn't this going away too?
earthdok
2014/10/20 15:32:18
You forgot to address this comment.
Paweł Hajdan Jr.
2014/10/21 07:58:04
Done.
| |
| 784 'linux_chromeos_asan', | 783 'linux_chromeos_asan', |
| 785 'linux_chromeos_browser_asan', | 784 'linux_chromeos_browser_asan', |
| 786 'linux_chromeos_valgrind', | 785 'linux_chromeos_valgrind', |
| 787 'linux_chromium_chromeos_clang_dbg', | 786 'linux_chromium_chromeos_clang_dbg', |
| 788 'linux_chromium_chromeos_clang_rel', | 787 'linux_chromium_chromeos_clang_rel', |
| 789 'linux_chromium_chromeos_dbg', | 788 'linux_chromium_chromeos_dbg', |
| 790 'linux_chromium_chromeos_rel', | 789 'linux_chromium_chromeos_rel', |
| 791 'linux_chromium_clang_dbg', | 790 'linux_chromium_clang_dbg', |
| 792 'linux_chromium_clang_rel', | 791 'linux_chromium_clang_rel', |
| 793 'linux_chromium_compile_dbg', | 792 'linux_chromium_compile_dbg', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 838 } | 837 } |
| 839 for master, bots in bots.iteritems(): | 838 for master, bots in bots.iteritems(): |
| 840 for bot in bots: | 839 for bot in bots: |
| 841 self.assertEqual(master, PRESUBMIT.GetTryServerMasterForBot(bot), | 840 self.assertEqual(master, PRESUBMIT.GetTryServerMasterForBot(bot), |
| 842 'bot=%s: expected %s, computed %s' % ( | 841 'bot=%s: expected %s, computed %s' % ( |
| 843 bot, master, PRESUBMIT.GetTryServerMasterForBot(bot))) | 842 bot, master, PRESUBMIT.GetTryServerMasterForBot(bot))) |
| 844 | 843 |
| 845 | 844 |
| 846 if __name__ == '__main__': | 845 if __name__ == '__main__': |
| 847 unittest.main() | 846 unittest.main() |
| OLD | NEW |