| 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)
|
|
|