Commit 15804091 authored by maruel@chromium.org's avatar maruel@chromium.org

Revert "Do not blindly assume that a .gclient file in a parent directory belongsto the cu..."

This reverts commit 58371

TBR=jochen
BUG=
TEST=

Review URL: http://codereview.chromium.org/3357005

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@58372 0039d316-1c4b-4281-b951-d872f2087c98
parent 2509f866
......@@ -621,24 +621,13 @@ solutions = [
def LoadCurrentConfig(options):
"""Searches for and loads a .gclient file relative to the current working
dir. Returns a GClient object."""
cwd = os.getcwd()
path = gclient_utils.FindGclientRoot(cwd, options.config_filename)
path = gclient_utils.FindGclientRoot(os.getcwd(), options.config_filename)
if not path:
return None
client = GClient(path, options)
client.SetConfig(gclient_utils.FileRead(
os.path.join(path, options.config_filename)))
if path == cwd:
return client
# Validate the current directory we are in belongs to the .gclient file we
# found.
cwd = cwd[len(path)+1:]
all_solutions = [d.name for d in client.tree(False)]
while len(cwd):
if cwd in all_solutions:
return client
cwd = os.path.dirname(cwd)
return None
return client
def SetDefaultConfig(self, solution_name, solution_url, safesync_url):
self.SetConfig(self.DEFAULT_CLIENT_FILE_TEXT % {
......
......@@ -145,18 +145,6 @@ class GClientSmoke(GClientSmokeBase):
self.check(res, self.gclient(['sync']))
self.check(res, self.gclient(['update']))
def testWrongConfig(self):
# tested in testConfig.
self.gclient(['config', self.svn_base + 'trunk/src/'])
other_src = join(self.root_dir, 'src-other')
os.mkdir(other_src)
res = ('', 'Error: client not configured; see \'gclient config\'\n', 1)
self.check(res, self.gclient(['status'], other_src))
src = join(self.root_dir, 'src')
os.mkdir(src)
res = self.gclient(['status'], src)
self.checkBlock(res[0], [('running', src)])
def testConfig(self):
p = join(self.root_dir, '.gclient')
def test(cmd, expected):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment