| Index: content/test/gpu/run_unittests.py
|
| diff --git a/content/test/gpu/run_unittests.py b/content/test/gpu/run_unittests.py
|
| index d5f5fe009a2a4d30716decc9ad36900a0e751008..ea5461e28fd9cdbda76ec3c7890e303d9c7bbc26 100755
|
| --- a/content/test/gpu/run_unittests.py
|
| +++ b/content/test/gpu/run_unittests.py
|
| @@ -24,11 +24,7 @@
|
| else:
|
| env['PYTHONPATH'] = telemetry_dir
|
|
|
| - path_to_run_tests = os.path.realpath(os.path.join(
|
| - telemetry_dir, 'telemetry', 'testing', 'run_tests.py'))
|
| - client_config = os.path.realpath(os.path.join(
|
| - gpu_test_dir, os.pardir, os.pardir, os.pardir, 'tools', 'perf',
|
| - 'core', 'binary_dependencies.json'))
|
| - argv = ['--top-level-dir', gpu_test_dir,
|
| - '--client-config', client_config] + sys.argv[1:]
|
| + path_to_run_tests = os.path.join(telemetry_dir, 'telemetry', 'testing',
|
| + 'run_tests.py')
|
| + argv = ['--top-level-dir', gpu_test_dir] + sys.argv[1:]
|
| sys.exit(subprocess.call([sys.executable, path_to_run_tests] + argv, env=env))
|
|
|