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

Side by Side Diff: tools-webrtc/get_landmines.py

Issue 2787023003: Another landmine for low_bandwidth_audio_test (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « no previous file | no next file » | 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 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 # 3 #
4 # Use of this source code is governed by a BSD-style license 4 # Use of this source code is governed by a BSD-style license
5 # that can be found in the LICENSE file in the root of the source 5 # that can be found in the LICENSE file in the root of the source
6 # tree. An additional intellectual property rights grant can be found 6 # tree. An additional intellectual property rights grant can be found
7 # in the file PATENTS. All contributing project authors may 7 # in the file PATENTS. All contributing project authors may
8 # be found in the AUTHORS file in the root of the source tree. 8 # be found in the AUTHORS file in the root of the source tree.
9 9
10 """ 10 """
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 if platform() == 'mac': 54 if platform() == 'mac':
55 # platform == 'ios' doesn't work since it assumes GYP_DEFINES is set, which 55 # platform == 'ios' doesn't work since it assumes GYP_DEFINES is set, which
56 # is no longer the case. 56 # is no longer the case.
57 print 'Clobber due to iOS compile errors (crbug.com/694721)' 57 print 'Clobber due to iOS compile errors (crbug.com/694721)'
58 print 'Clobber to unblock https://codereview.webrtc.org/2709573003' 58 print 'Clobber to unblock https://codereview.webrtc.org/2709573003'
59 print 'Clobber to fix https://codereview.webrtc.org/2709573003 after landing ' 59 print 'Clobber to fix https://codereview.webrtc.org/2709573003 after landing '
60 print ('Clobber to fix https://codereview.webrtc.org/2767383005 before' 60 print ('Clobber to fix https://codereview.webrtc.org/2767383005 before'
61 'landing (changing rtc_executable -> rtc_test on iOS)') 61 'landing (changing rtc_executable -> rtc_test on iOS)')
62 print ('Clobber to fix https://codereview.webrtc.org/2767383005 before' 62 print ('Clobber to fix https://codereview.webrtc.org/2767383005 before'
63 'landing (changing rtc_executable -> rtc_test on iOS)') 63 'landing (changing rtc_executable -> rtc_test on iOS)')
64 print 'Another landmine for low_bandwidth_audio_test (webrtc:7430)'
64 65
65 66
66 def main(): 67 def main():
67 print_landmines() 68 print_landmines()
68 return 0 69 return 0
69 70
70 71
71 if __name__ == '__main__': 72 if __name__ == '__main__':
72 sys.exit(main()) 73 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698