19 lines
645 B
Python
Executable file
19 lines
645 B
Python
Executable file
#!/usr/bin/python
|
|
|
|
# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import common, commands, logging, os, shutil
|
|
from autotest_lib.client.bin import utils
|
|
|
|
version = 1
|
|
|
|
def setup(top_dir):
|
|
# The copy the gtest files from the SYSROOT to the client
|
|
gtest = utils.run(os.environ['SYSROOT'] + '/usr/bin/gtest-config --libdir')
|
|
os.chdir(os.environ['SYSROOT'] + '/' + gtest.stdout.rstrip())
|
|
utils.run('cp libgtest* ' + top_dir)
|
|
|
|
pwd = os.getcwd()
|
|
utils.update_version(pwd + '/src', False, version, setup, pwd)
|