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', | |
784 'linux_chromeos_asan', | 782 'linux_chromeos_asan', |
785 'linux_chromeos_browser_asan', | 783 'linux_chromeos_browser_asan', |
786 'linux_chromeos_valgrind', | 784 'linux_chromeos_valgrind', |
787 'linux_chromium_chromeos_clang_dbg', | 785 'linux_chromium_chromeos_clang_dbg', |
788 'linux_chromium_chromeos_clang_rel', | 786 'linux_chromium_chromeos_clang_rel', |
789 'linux_chromium_chromeos_dbg', | 787 'linux_chromium_chromeos_dbg', |
790 'linux_chromium_chromeos_rel', | 788 'linux_chromium_chromeos_rel', |
791 'linux_chromium_clang_dbg', | 789 'linux_chromium_clang_dbg', |
792 'linux_chromium_clang_rel', | 790 'linux_chromium_clang_rel', |
793 'linux_chromium_compile_dbg', | 791 'linux_chromium_compile_dbg', |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
838 } | 836 } |
839 for master, bots in bots.iteritems(): | 837 for master, bots in bots.iteritems(): |
840 for bot in bots: | 838 for bot in bots: |
841 self.assertEqual(master, PRESUBMIT.GetTryServerMasterForBot(bot), | 839 self.assertEqual(master, PRESUBMIT.GetTryServerMasterForBot(bot), |
842 'bot=%s: expected %s, computed %s' % ( | 840 'bot=%s: expected %s, computed %s' % ( |
843 bot, master, PRESUBMIT.GetTryServerMasterForBot(bot))) | 841 bot, master, PRESUBMIT.GetTryServerMasterForBot(bot))) |
844 | 842 |
845 | 843 |
846 if __name__ == '__main__': | 844 if __name__ == '__main__': |
847 unittest.main() | 845 unittest.main() |
OLD | NEW |