diff options
author | tiago.vignatti <tiago.vignatti@intel.com> | 2015-04-14 07:56:02 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-14 14:56:33 +0000 |
commit | f64acc0f3395e596d2dc0c7e25fffc97c1c25f5c (patch) | |
tree | f0560184cd8b760bbd75493b7cb46bed92a48b72 | |
parent | 8bcaec1d5a6c1fb6382b5fe09379c36669a0d466 (diff) | |
download | chromium_src-f64acc0f3395e596d2dc0c7e25fffc97c1c25f5c.zip chromium_src-f64acc0f3395e596d2dc0c7e25fffc97c1c25f5c.tar.gz chromium_src-f64acc0f3395e596d2dc0c7e25fffc97c1c25f5c.tar.bz2 |
gpu_unittests: Add EXECUTABLE_SUFFIX in isolate script
For consistency with the other scripts, this CL add the <(EXECUTABLE_SUFFIX) as
well in gpu_unittests.
BUG=none
Review URL: https://codereview.chromium.org/1082913002
Cr-Commit-Position: refs/heads/master@{#325046}
-rw-r--r-- | gpu/gpu_unittests.isolate | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gpu/gpu_unittests.isolate b/gpu/gpu_unittests.isolate index 7ad1b79..999c870 100644 --- a/gpu/gpu_unittests.isolate +++ b/gpu/gpu_unittests.isolate @@ -21,7 +21,7 @@ 'command': [ '../testing/xvfb.py', '<(PRODUCT_DIR)', - '<(PRODUCT_DIR)/gpu_unittests', + '<(PRODUCT_DIR)/gpu_unittests<(EXECUTABLE_SUFFIX)', '--brave-new-test-launcher', '--test-launcher-bot-mode', '--asan=<(asan)', @@ -30,7 +30,7 @@ ], 'files': [ '../testing/xvfb.py', - '<(PRODUCT_DIR)/xdisplaycheck', + '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', ], }, }], |