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

Side by Side Diff: tools/determinism/compare_build_artifacts.py

Issue 2260053003: Rename compare_build_artifacts directory name. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename direname Created 4 years, 4 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
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2014 The Chromium Authors. All rights reserved. 2 # Copyright 2014 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 """Compare the artifacts from two builds.""" 6 """Compare the artifacts from two builds."""
7 7
8 import difflib 8 import difflib
9 import json 9 import json
10 import optparse 10 import optparse
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 parser.error('--target-platform is required') 587 parser.error('--target-platform is required')
588 588
589 return compare_build_artifacts(os.path.abspath(options.first_build_dir), 589 return compare_build_artifacts(os.path.abspath(options.first_build_dir),
590 os.path.abspath(options.second_build_dir), 590 os.path.abspath(options.second_build_dir),
591 options.target_platform, 591 options.target_platform,
592 options.recursive) 592 options.recursive)
593 593
594 594
595 if __name__ == '__main__': 595 if __name__ == '__main__':
596 sys.exit(main()) 596 sys.exit(main())
OLDNEW
« no previous file with comments | « tools/compare_build_artifacts/deterministic_build_blacklist.json ('k') | tools/determinism/deterministic_build_blacklist.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698