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

Unified Diff: buildbot/scripts/slave/chromium/archive_build.py

Issue 200074: Add back icudt38.dll to the list of files to archive and the list of files fo... (Closed) Base URL: svn://chrome-svn/chrome/trunk/tools/
Patch Set: '' Created 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « buildbot/scripts/common/chromium_config.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: buildbot/scripts/slave/chromium/archive_build.py
===================================================================
--- buildbot/scripts/slave/chromium/archive_build.py (revision 25713)
+++ buildbot/scripts/slave/chromium/archive_build.py (working copy)
@@ -347,10 +347,15 @@
for test_dir in test_dirs:
print 'chromium_utils.MaybeMakeDirectory(%s)' % test_dir
- for test_file in test_files:
+ for test_file in test_files[:]:
relative_dir = os.path.dirname(test_file[len(base_src_dir):])
test_dir = os.path.join(www_dir, 'chrome-win32.test', relative_dir)
- print 'chromium_utils.CopyFileToDir(%s, %s)' % (test_file, test_dir)
+ if os.path.exists(test_file):
+ print 'chromium_utils.CopyFileToDir(%s, %s)' % (test_file, test_dir)
+ else:
+ print '%s does not exist and is skipped.' % test_file
+ test_files.remove(test_file)
+
if not DRY_RUN:
for test_dir in test_dirs:
chromium_utils.MaybeMakeDirectory(test_dir)
« no previous file with comments | « buildbot/scripts/common/chromium_config.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698