mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Fix gtest path (issue #2188)
This commit is contained in:
@ -7,7 +7,7 @@ Description:
|
|||||||
Fuzed (single header/source file) version of GoogleTest. Generated from the
|
Fuzed (single header/source file) version of GoogleTest. Generated from the
|
||||||
Chromium source checkout with the following command:
|
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>
|
./fuse_gtest_files.py <out_directory>
|
||||||
|
|
||||||
Local Modifications:
|
Local Modifications:
|
||||||
|
@ -160,7 +160,8 @@ def create_readme():
|
|||||||
|
|
||||||
def create_fuzed_gtest(tests_dir):
|
def create_fuzed_gtest(tests_dir):
|
||||||
""" Generate a fuzed version of gtest and build the expected directory structure. """
|
""" 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),
|
run('%s fuse_gtest_files.py \"%s\"' % (sys.executable, tests_dir),
|
||||||
os.path.join(src_gtest_dir, 'scripts'))
|
os.path.join(src_gtest_dir, 'scripts'))
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user