blob: 5ee17b3ed4a8cf4083cabcb5021dcf77ff5c219f [file] [log] [blame]
Aviv Keshetb1238c32013-04-01 11:42:13 -07001#!/usr/bin/python
2
3# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7
8"""
9Simple script to be run inside the chroot. Used as a fast approximation of
10emerge-$board autotest-all, by simply rsync'ing changes from trunk to sysroot.
11"""
12
Aviv Keshete7b20192013-04-24 14:05:53 -070013import argparse
Aviv Keshetfe54a8a2013-09-16 15:49:03 -070014import glob
Aviv Keshete00caeb2013-04-17 14:03:25 -070015import logging
Aviv Keshetb1238c32013-04-01 11:42:13 -070016import os
Aviv Keshet787ffcd2013-04-08 15:14:56 -070017import re
Aviv Keshetb1238c32013-04-01 11:42:13 -070018import sys
Aviv Keshet787ffcd2013-04-08 15:14:56 -070019from collections import namedtuple
20
Aviv Keshetb1238c32013-04-01 11:42:13 -070021from chromite.buildbot import constants
Aviv Keshet940c17f2013-04-11 18:41:42 -070022from chromite.buildbot import portage_utilities
Aviv Keshetb1238c32013-04-01 11:42:13 -070023from chromite.lib import cros_build_lib
24from chromite.lib import git
Aviv Keshet557e6882013-04-25 13:26:09 -070025from chromite.lib import osutils
Aviv Keshetb1238c32013-04-01 11:42:13 -070026
Aviv Keshetb1238c32013-04-01 11:42:13 -070027
Aviv Keshet940c17f2013-04-11 18:41:42 -070028if cros_build_lib.IsInsideChroot():
29 # Only import portage after we've checked that we're inside the chroot.
30 import portage
31
Aviv Keshetb1238c32013-04-01 11:42:13 -070032INCLUDE_PATTERNS_FILENAME = 'autotest-quickmerge-includepatterns'
33AUTOTEST_PROJECT_NAME = 'chromiumos/third_party/autotest'
Aviv Keshet5f3cf722013-05-09 17:35:25 -070034AUTOTEST_EBUILD = 'chromeos-base/autotest'
Aviv Keshetfe54a8a2013-09-16 15:49:03 -070035DOWNGRADE_EBUILDS = ['chromeos-base/autotest']
Aviv Keshet787ffcd2013-04-08 15:14:56 -070036
Aviv Keshetc73cfc32013-06-14 16:18:53 -070037IGNORE_SUBDIRS = ['ExternalSource',
38 'logs',
39 'results',
40 'site-packages']
41
Aviv Keshet787ffcd2013-04-08 15:14:56 -070042# Data structure describing a single rsync filesystem change.
43#
44# change_description: An 11 character string, the rsync change description
45# for the particular file.
46# absolute_path: The absolute path of the created or modified file.
47ItemizedChange = namedtuple('ItemizedChange', ['change_description',
48 'absolute_path'])
49
50
51# Data structure describing the rsync new/modified files or directories.
52#
53# new_files: A list of ItemizedChange objects for new files.
54# modified_files: A list of ItemizedChange objects for modified files.
55# new_directories: A list of ItemizedChange objects for new directories.
56ItemizedChangeReport = namedtuple('ItemizedChangeReport',
57 ['new_files', 'modified_files',
58 'new_directories'])
59
Aviv Keshet84bdfc52013-06-04 13:19:38 -070060class PortagePackageAPIError(Exception):
61 """Exception thrown when unable to retrieve a portage package API."""
62
Aviv Keshet787ffcd2013-04-08 15:14:56 -070063
Aviv Keshetc73cfc32013-06-14 16:18:53 -070064
65def GetNewestFileTime(path, ignore_subdirs=[]):
66 #pylint: disable-msg=W0102
67 """Recursively determine the newest file modification time.
68
Mike Frysinger02e1e072013-11-10 22:11:34 -050069 Args:
Aviv Keshetc73cfc32013-06-14 16:18:53 -070070 path: The absolute path of the directory to recursively search.
71 ignore_subdirs: list of names of subdirectores of given path, to be
72 ignored by recursive search. Useful as a speed
73 optimization, to ignore directories full of many
74 files.
75
76 Returns:
77 The modification time of the most recently modified file recursively
78 contained within the specified directory. Returned as seconds since
79 Jan. 1, 1970, 00:00 GMT, with fractional part (floating point number).
80 """
81 command = ['find', path]
82 for ignore in ignore_subdirs:
83 command.extend(['-path', os.path.join(path, ignore), '-prune', '-o'])
84 command.extend(['-printf', r'%T@\n'])
85
Yu-Ju Hong3add4432014-01-30 11:46:15 -080086 command_result = cros_build_lib.RunCommand(command, error_code_ok=True,
87 capture_output=True)
Aviv Keshetc73cfc32013-06-14 16:18:53 -070088 float_times = [float(str_time) for str_time in
89 command_result.output.split('\n')
90 if str_time != '']
91
92 return max(float_times)
93
94
Aviv Keshet75d65962013-04-17 16:15:23 -070095def GetStalePackageNames(change_list, autotest_sysroot):
Aviv Keshete7b20192013-04-24 14:05:53 -070096 """Given a rsync change report, returns the names of stale test packages.
Aviv Keshet75d65962013-04-17 16:15:23 -070097
98 This function pulls out test package names for client-side tests, stored
99 within the client/site_tests directory tree, that had any files added or
100 modified and for whom any existing bzipped test packages may now be stale.
101
Mike Frysinger02e1e072013-11-10 22:11:34 -0500102 Args:
Aviv Keshet75d65962013-04-17 16:15:23 -0700103 change_list: A list of ItemizedChange objects corresponding to changed
104 or modified files.
105 autotest_sysroot: Absolute path of autotest in the sysroot,
Aviv Keshet474469d2013-07-22 12:54:52 -0700106 e.g. '/build/lumpy/usr/local/build/autotest'
Aviv Keshet75d65962013-04-17 16:15:23 -0700107
108 Returns:
109 A list of test package names, eg ['factory_Leds', 'login_UserPolicyKeys'].
110 May contain duplicate entries if multiple files within a test directory
111 were modified.
112 """
113 exp = os.path.abspath(autotest_sysroot) + r'/client/site_tests/(.*?)/.*'
114 matches = [re.match(exp, change.absolute_path) for change in change_list]
115 return [match.group(1) for match in matches if match]
116
117
Aviv Keshet787ffcd2013-04-08 15:14:56 -0700118def ItemizeChangesFromRsyncOutput(rsync_output, destination_path):
119 """Convert the output of an rsync with `-i` to a ItemizedChangeReport object.
120
Mike Frysinger02e1e072013-11-10 22:11:34 -0500121 Args:
Aviv Keshet787ffcd2013-04-08 15:14:56 -0700122 rsync_output: String stdout of rsync command that was run with `-i` option.
123 destination_path: String absolute path of the destination directory for the
124 rsync operations. This argument is necessary because
125 rsync's output only gives the relative path of
126 touched/added files.
127
128 Returns:
129 ItemizedChangeReport object giving the absolute paths of files that were
130 created or modified by rsync.
131 """
132 modified_matches = re.findall(r'([.>]f[^+]{9}) (.*)', rsync_output)
133 new_matches = re.findall(r'(>f\+{9}) (.*)', rsync_output)
134 new_symlink_matches = re.findall(r'(cL\+{9}) (.*) -> .*', rsync_output)
135 new_dir_matches = re.findall(r'(cd\+{9}) (.*)', rsync_output)
136
137 absolute_modified = [ItemizedChange(c, os.path.join(destination_path, f))
138 for (c, f) in modified_matches]
139
140 # Note: new symlinks are treated as new files.
141 absolute_new = [ItemizedChange(c, os.path.join(destination_path, f))
142 for (c, f) in new_matches + new_symlink_matches]
143
144 absolute_new_dir = [ItemizedChange(c, os.path.join(destination_path, f))
145 for (c, f) in new_dir_matches]
146
147 return ItemizedChangeReport(new_files=absolute_new,
148 modified_files=absolute_modified,
149 new_directories=absolute_new_dir)
150
151
Aviv Keshete00caeb2013-04-17 14:03:25 -0700152def GetPackageAPI(portage_root, package_cp):
Aviv Keshete7b20192013-04-24 14:05:53 -0700153 """Gets portage API handles for the given package.
Aviv Keshet940c17f2013-04-11 18:41:42 -0700154
Mike Frysinger02e1e072013-11-10 22:11:34 -0500155 Args:
Aviv Keshete00caeb2013-04-17 14:03:25 -0700156 portage_root: Root directory of portage tree. Eg '/' or '/build/lumpy'
157 package_cp: A string similar to 'chromeos-base/autotest-tests'.
158
159 Returns:
160 Returns (package, vartree) tuple, where
161 package is of type portage.dbapi.vartree.dblink
162 vartree is of type portage.dbapi.vartree.vartree
Aviv Keshet940c17f2013-04-11 18:41:42 -0700163 """
164 if portage_root is None:
Aviv Keshete7b20192013-04-24 14:05:53 -0700165 # pylint: disable-msg=E1101
166 portage_root = portage.root
Aviv Keshet940c17f2013-04-11 18:41:42 -0700167 # Ensure that portage_root ends with trailing slash.
168 portage_root = os.path.join(portage_root, '')
169
Aviv Keshete7b20192013-04-24 14:05:53 -0700170 # Create a vartree object corresponding to portage_root.
Aviv Keshet940c17f2013-04-11 18:41:42 -0700171 trees = portage.create_trees(portage_root, portage_root)
172 vartree = trees[portage_root]['vartree']
173
Aviv Keshete7b20192013-04-24 14:05:53 -0700174 # List the matching installed packages in cpv format.
Aviv Keshet940c17f2013-04-11 18:41:42 -0700175 matching_packages = vartree.dbapi.cp_list(package_cp)
176
177 if not matching_packages:
Aviv Keshet84bdfc52013-06-04 13:19:38 -0700178 raise PortagePackageAPIError('No matching package for %s in portage_root '
179 '%s' % (package_cp, portage_root))
Aviv Keshet940c17f2013-04-11 18:41:42 -0700180
181 if len(matching_packages) > 1:
Aviv Keshet84bdfc52013-06-04 13:19:38 -0700182 raise PortagePackageAPIError('Too many matching packages for %s in '
183 'portage_root %s' % (package_cp,
184 portage_root))
Aviv Keshet940c17f2013-04-11 18:41:42 -0700185
Aviv Keshete7b20192013-04-24 14:05:53 -0700186 # Convert string match to package dblink.
Aviv Keshet940c17f2013-04-11 18:41:42 -0700187 package_cpv = matching_packages[0]
188 package_split = portage_utilities.SplitCPV(package_cpv)
Aviv Keshete7b20192013-04-24 14:05:53 -0700189 # pylint: disable-msg=E1101
190 package = portage.dblink(package_split.category,
Aviv Keshet940c17f2013-04-11 18:41:42 -0700191 package_split.pv, settings=vartree.settings,
192 vartree=vartree)
193
Aviv Keshete00caeb2013-04-17 14:03:25 -0700194 return package, vartree
195
196
197def DowngradePackageVersion(portage_root, package_cp,
198 downgrade_to_version='0'):
Aviv Keshete7b20192013-04-24 14:05:53 -0700199 """Downgrade the specified portage package version.
Aviv Keshete00caeb2013-04-17 14:03:25 -0700200
Mike Frysinger02e1e072013-11-10 22:11:34 -0500201 Args:
Aviv Keshete00caeb2013-04-17 14:03:25 -0700202 portage_root: Root directory of portage tree. Eg '/' or '/build/lumpy'
203 package_cp: A string similar to 'chromeos-base/autotest-tests'.
204 downgrade_to_version: String version to downgrade to. Default: '0'
205
206 Returns:
Aviv Keshet557e6882013-04-25 13:26:09 -0700207 True on success. False on failure (nonzero return code from `mv` command).
Aviv Keshete00caeb2013-04-17 14:03:25 -0700208 """
Aviv Keshet84bdfc52013-06-04 13:19:38 -0700209 try:
210 package, _ = GetPackageAPI(portage_root, package_cp)
211 except PortagePackageAPIError:
212 # Unable to fetch a corresponding portage package API for this
213 # package_cp (either no such package, or name ambigious and matches).
214 # So, just fail out.
215 return False
Aviv Keshete00caeb2013-04-17 14:03:25 -0700216
217 source_directory = package.dbdir
218 destination_path = os.path.join(
219 package.dbroot, package_cp + '-' + downgrade_to_version)
220 if os.path.abspath(source_directory) == os.path.abspath(destination_path):
Aviv Keshet557e6882013-04-25 13:26:09 -0700221 return True
Aviv Keshete00caeb2013-04-17 14:03:25 -0700222 command = ['mv', source_directory, destination_path]
Aviv Keshet557e6882013-04-25 13:26:09 -0700223 code = cros_build_lib.SudoRunCommand(command, error_code_ok=True).returncode
224 return code == 0
Aviv Keshete00caeb2013-04-17 14:03:25 -0700225
226
Aviv Keshete7b20192013-04-24 14:05:53 -0700227def UpdatePackageContents(change_report, package_cp, portage_root=None):
228 """Add newly created files/directors to package contents.
Aviv Keshete00caeb2013-04-17 14:03:25 -0700229
230 Given an ItemizedChangeReport, add the newly created files and directories
231 to the CONTENTS of an installed portage package, such that these files are
232 considered owned by that package.
233
Mike Frysinger02e1e072013-11-10 22:11:34 -0500234 Args:
Aviv Keshete00caeb2013-04-17 14:03:25 -0700235 changereport: ItemizedChangeReport object for the changes to be
236 made to the package.
237 package_cp: A string similar to 'chromeos-base/autotest-tests' giving
238 the package category and name of the package to be altered.
239 portage_root: Portage root path, corresponding to the board that
240 we are working on. Defaults to '/'
241 """
242 package, vartree = GetPackageAPI(portage_root, package_cp)
243
Aviv Keshete7b20192013-04-24 14:05:53 -0700244 # Append new contents to package contents dictionary.
Aviv Keshet940c17f2013-04-11 18:41:42 -0700245 contents = package.getcontents().copy()
246 for _, filename in change_report.new_files:
247 contents.setdefault(filename, (u'obj', '0', '0'))
248 for _, dirname in change_report.new_directories:
Aviv Keshete7b20192013-04-24 14:05:53 -0700249 # Strip trailing slashes if present.
250 contents.setdefault(dirname.rstrip('/'), (u'dir',))
Aviv Keshet940c17f2013-04-11 18:41:42 -0700251
Aviv Keshete7b20192013-04-24 14:05:53 -0700252 # Write new contents dictionary to file.
Aviv Keshet940c17f2013-04-11 18:41:42 -0700253 vartree.dbapi.writeContentsToContentsFile(package, contents)
254
255
Aviv Keshet19276752013-05-16 11:12:23 -0700256def RemoveBzipPackages(autotest_sysroot):
257 """Remove all bzipped test/dep/profiler packages from sysroot autotest.
Aviv Keshet75d65962013-04-17 16:15:23 -0700258
Mike Frysinger02e1e072013-11-10 22:11:34 -0500259 Args:
Aviv Keshet75d65962013-04-17 16:15:23 -0700260 autotest_sysroot: Absolute path of autotest in the sysroot,
Aviv Keshet474469d2013-07-22 12:54:52 -0700261 e.g. '/build/lumpy/usr/local/build/autotest'
Aviv Keshet75d65962013-04-17 16:15:23 -0700262 """
Aviv Keshet19276752013-05-16 11:12:23 -0700263 osutils.RmDir(os.path.join(autotest_sysroot, 'packages'),
264 ignore_missing=True)
265 osutils.SafeUnlink(os.path.join(autotest_sysroot, 'packages.checksum'))
Aviv Keshet75d65962013-04-17 16:15:23 -0700266
267
Aviv Keshetb1238c32013-04-01 11:42:13 -0700268def RsyncQuickmerge(source_path, sysroot_autotest_path,
269 include_pattern_file=None, pretend=False,
Aviv Keshet60968ec2013-04-11 18:44:14 -0700270 overwrite=False):
Aviv Keshetb1238c32013-04-01 11:42:13 -0700271 """Run rsync quickmerge command, with specified arguments.
Aviv Keshete7b20192013-04-24 14:05:53 -0700272
Aviv Keshetb1238c32013-04-01 11:42:13 -0700273 Command will take form `rsync -a [options] --exclude=**.pyc
274 --exclude=**.pyo
275 [optional --include-from argument]
276 --exclude=* [source_path] [sysroot_autotest_path]`
277
Mike Frysinger02e1e072013-11-10 22:11:34 -0500278 Args:
Aviv Keshetb1238c32013-04-01 11:42:13 -0700279 pretend: True to use the '-n' option to rsync, to perform dry run.
280 overwrite: True to omit '-u' option, overwrite all files in sysroot,
281 not just older files.
Aviv Keshet557e6882013-04-25 13:26:09 -0700282
283 Returns:
284 The cros_build_lib.CommandResult object resulting from the rsync command.
Aviv Keshetb1238c32013-04-01 11:42:13 -0700285 """
286 command = ['rsync', '-a']
287
288 if pretend:
289 command += ['-n']
290
291 if not overwrite:
292 command += ['-u']
293
Aviv Keshet60968ec2013-04-11 18:44:14 -0700294 command += ['-i']
Aviv Keshetb1238c32013-04-01 11:42:13 -0700295
296 command += ['--exclude=**.pyc']
297 command += ['--exclude=**.pyo']
298
Aviv Keshet787ffcd2013-04-08 15:14:56 -0700299 # Exclude files with a specific substring in their name, because
300 # they create an ambiguous itemized report. (see unit test file for details)
301 command += ['--exclude=** -> *']
302
Aviv Keshetb1238c32013-04-01 11:42:13 -0700303 if include_pattern_file:
304 command += ['--include-from=%s' % include_pattern_file]
305
306 command += ['--exclude=*']
307
308 command += [source_path, sysroot_autotest_path]
309
Aviv Keshet60968ec2013-04-11 18:44:14 -0700310 return cros_build_lib.SudoRunCommand(command, redirect_stdout=True)
Aviv Keshetb1238c32013-04-01 11:42:13 -0700311
312
313def ParseArguments(argv):
314 """Parse command line arguments
315
Mike Frysinger02e1e072013-11-10 22:11:34 -0500316 Returns:
317 parsed arguments.
Aviv Keshetb1238c32013-04-01 11:42:13 -0700318 """
319 parser = argparse.ArgumentParser(description='Perform a fast approximation '
320 'to emerge-$board autotest-all, by '
321 'rsyncing source tree to sysroot.')
322
Aviv Keshet0a366a02013-07-18 10:52:04 -0700323
324 default_board = cros_build_lib.GetDefaultBoard()
325 parser.add_argument('--board', metavar='BOARD', default=default_board,
326 help='Board to perform quickmerge for. Default: ' +
327 (default_board or 'Not configured.'))
Aviv Keshetb1238c32013-04-01 11:42:13 -0700328 parser.add_argument('--pretend', action='store_true',
329 help='Dry run only, do not modify sysroot autotest.')
330 parser.add_argument('--overwrite', action='store_true',
331 help='Overwrite existing files even if newer.')
Aviv Keshetc73cfc32013-06-14 16:18:53 -0700332 parser.add_argument('--force', action='store_true',
333 help='Do not check whether destination tree is newer '
334 'than source tree, always perform quickmerge.')
Aviv Keshete00caeb2013-04-17 14:03:25 -0700335 parser.add_argument('--verbose', action='store_true',
336 help='Print detailed change report.')
Aviv Keshetb1238c32013-04-01 11:42:13 -0700337
Aviv Keshet474469d2013-07-22 12:54:52 -0700338 # Used only if test_that is calling autotest_quickmerge and has detected that
339 # the sysroot autotest path is still in usr/local/autotest (ie the build
340 # pre-dates https://chromium-review.googlesource.com/#/c/62880/ )
341 parser.add_argument('--legacy_path', action='store_true',
342 help=argparse.SUPPRESS)
343
Aviv Keshetb1238c32013-04-01 11:42:13 -0700344 return parser.parse_args(argv)
345
346
347def main(argv):
348 cros_build_lib.AssertInsideChroot()
349
350 args = ParseArguments(argv)
351
Aviv Keshete7b20192013-04-24 14:05:53 -0700352 if os.geteuid() != 0:
Aviv Keshet940c17f2013-04-11 18:41:42 -0700353 try:
354 cros_build_lib.SudoRunCommand([sys.executable] + sys.argv)
355 except cros_build_lib.RunCommandError:
356 return 1
357 return 0
358
Aviv Keshetb1238c32013-04-01 11:42:13 -0700359 if not args.board:
Aviv Keshete00caeb2013-04-17 14:03:25 -0700360 print 'No board specified. Aborting.'
Aviv Keshetb1238c32013-04-01 11:42:13 -0700361 return 1
362
363 manifest = git.ManifestCheckout.Cached(constants.SOURCE_ROOT)
David Jamese3b06062013-11-09 18:52:02 -0800364 checkout = manifest.FindCheckout(AUTOTEST_PROJECT_NAME)
365 source_path = os.path.join(checkout.GetPath(absolute=True), '')
Aviv Keshetb1238c32013-04-01 11:42:13 -0700366
367 script_path = os.path.dirname(__file__)
368 include_pattern_file = os.path.join(script_path, INCLUDE_PATTERNS_FILENAME)
369
370 # TODO: Determine the following string programatically.
Aviv Keshet940c17f2013-04-11 18:41:42 -0700371 sysroot_path = os.path.join('/build', args.board, '')
Aviv Keshet474469d2013-07-22 12:54:52 -0700372 sysroot_autotest_path = os.path.join(sysroot_path,
373 constants.AUTOTEST_BUILD_PATH, '')
374 if args.legacy_path:
375 sysroot_autotest_path = os.path.join(sysroot_path, 'usr/local/autotest',
376 '')
Aviv Keshetb1238c32013-04-01 11:42:13 -0700377
Aviv Keshetc73cfc32013-06-14 16:18:53 -0700378 if not args.force:
379 newest_dest_time = GetNewestFileTime(sysroot_autotest_path, IGNORE_SUBDIRS)
380 newest_source_time = GetNewestFileTime(source_path, IGNORE_SUBDIRS)
381 if newest_dest_time >= newest_source_time:
382 logging.info('The sysroot appears to be newer than the source tree, '
383 'doing nothing and exiting now.')
384 return 0
385
Aviv Keshet60968ec2013-04-11 18:44:14 -0700386 rsync_output = RsyncQuickmerge(source_path, sysroot_autotest_path,
Aviv Keshete7b20192013-04-24 14:05:53 -0700387 include_pattern_file, args.pretend,
388 args.overwrite)
Aviv Keshetb1238c32013-04-01 11:42:13 -0700389
Aviv Keshete00caeb2013-04-17 14:03:25 -0700390 if args.verbose:
391 logging.info(rsync_output.output)
392
Aviv Keshet60968ec2013-04-11 18:44:14 -0700393 change_report = ItemizeChangesFromRsyncOutput(rsync_output.output,
394 sysroot_autotest_path)
395
Aviv Keshet940c17f2013-04-11 18:41:42 -0700396 if not args.pretend:
Aviv Keshetc73cfc32013-06-14 16:18:53 -0700397 logging.info('Updating portage database.')
Aviv Keshet5f3cf722013-05-09 17:35:25 -0700398 UpdatePackageContents(change_report, AUTOTEST_EBUILD,
Aviv Keshet940c17f2013-04-11 18:41:42 -0700399 sysroot_path)
Aviv Keshetfe54a8a2013-09-16 15:49:03 -0700400 for logfile in glob.glob(os.path.join(sysroot_autotest_path, 'packages',
401 '*.log')):
402 try:
403 # Open file in a try-except block, for atomicity, instead of
404 # doing existence check.
405 with open(logfile, 'r') as f:
406 package_cp = f.readline().strip()
407 DOWNGRADE_EBUILDS.append(package_cp)
408 except IOError:
409 pass
410
Aviv Keshet3cc4e9e2013-04-24 10:47:23 -0700411 for ebuild in DOWNGRADE_EBUILDS:
Aviv Keshet557e6882013-04-25 13:26:09 -0700412 if not DowngradePackageVersion(sysroot_path, ebuild):
Aviv Keshet3cc4e9e2013-04-24 10:47:23 -0700413 logging.warning('Unable to downgrade package %s version number.',
Aviv Keshete7b20192013-04-24 14:05:53 -0700414 ebuild)
Aviv Keshet19276752013-05-16 11:12:23 -0700415 RemoveBzipPackages(sysroot_autotest_path)
Aviv Keshetb1238c32013-04-01 11:42:13 -0700416
Aviv Keshetc73cfc32013-06-14 16:18:53 -0700417 sentinel_filename = os.path.join(sysroot_autotest_path,
418 '.quickmerge_sentinel')
419 cros_build_lib.RunCommand(['touch', sentinel_filename])
420
Aviv Keshetfe54a8a2013-09-16 15:49:03 -0700421
Aviv Keshet940c17f2013-04-11 18:41:42 -0700422 if args.pretend:
Aviv Keshete00caeb2013-04-17 14:03:25 -0700423 logging.info('The following message is pretend only. No filesystem '
Aviv Keshete7b20192013-04-24 14:05:53 -0700424 'changes made.')
Aviv Keshete00caeb2013-04-17 14:03:25 -0700425 logging.info('Quickmerge complete. Created or modified %s files.',
Aviv Keshete7b20192013-04-24 14:05:53 -0700426 len(change_report.new_files) +
427 len(change_report.modified_files))
Aviv Keshete00caeb2013-04-17 14:03:25 -0700428
429 return 0