commit | 172a56344269094838930d79bba615c69c668728 | [log] [tgz] |
---|---|---|
author | Oleh Prypin <oprypin@webrtc.org> | Wed Apr 04 16:22:01 2018 +0200 |
committer | Commit Bot <commit-bot@chromium.org> | Wed Apr 04 14:47:40 2018 +0000 |
tree | 4cd530488119058fbd081057d40b4374e021c7fe | |
parent | 448f4d50dc75531db755ed6829f33be426429f95 [diff] [blame] |
Fix path to AppRTC/collider on Windows Bug: webrtc:7602 No-Try: True Change-Id: I4d8f254e1316481f35638a1a2882275dfec2b5c1 Reviewed-on: https://webrtc-review.googlesource.com/66860 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Oleh Prypin <oprypin@webrtc.org> Cr-Commit-Position: refs/heads/master@{#22735}
diff --git a/rtc_tools/testing/utils.py b/rtc_tools/testing/utils.py index 3b82fc8..e0f679d 100755 --- a/rtc_tools/testing/utils.py +++ b/rtc_tools/testing/utils.py
@@ -118,3 +118,7 @@ if sys.platform.startswith('darwin'): return 'mac' raise Exception("Can't run on platform %s." % sys.platform) + + +def GetExecutableExtension(): + return '.exe' if GetPlatform() == 'win' else ''