Fix gtest path (issue #2188)
This commit is contained in:
parent
943ffb217b
commit
5918d426b3
|
@ -7,7 +7,7 @@ Description:
|
|||
Fuzed (single header/source file) version of GoogleTest. Generated from the
|
||||
Chromium source checkout with the following command:
|
||||
|
||||
cd /path/to/chromium/src/testing/gtest/scripts
|
||||
cd /path/to/chromium/src/third_party/googletest/src/googletest/scripts
|
||||
./fuse_gtest_files.py <out_directory>
|
||||
|
||||
Local Modifications:
|
||||
|
|
|
@ -160,7 +160,8 @@ def create_readme():
|
|||
|
||||
def create_fuzed_gtest(tests_dir):
|
||||
""" Generate a fuzed version of gtest and build the expected directory structure. """
|
||||
src_gtest_dir = os.path.join(src_dir, 'testing', 'gtest')
|
||||
src_gtest_dir = os.path.join(src_dir, 'third_party', 'googletest', 'src',
|
||||
'googletest')
|
||||
run('%s fuse_gtest_files.py \"%s\"' % (sys.executable, tests_dir),
|
||||
os.path.join(src_gtest_dir, 'scripts'))
|
||||
|
||||
|
|
Loading…
Reference in New Issue