summaryrefslogtreecommitdiffstats
path: root/tools/valgrind/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/valgrind/common.py')
-rwxr-xr-xtools/valgrind/common.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/tools/valgrind/common.py b/tools/valgrind/common.py
index 8b855f6..98eecb7 100755
--- a/tools/valgrind/common.py
+++ b/tools/valgrind/common.py
@@ -134,22 +134,11 @@ def IsWindows():
return sys.platform == 'cygwin' or sys.platform.startswith('win')
-def IsWine():
- """This needs to be set by the script that starts the buildbot, i.e.
- /etc/init.d/buildbot, or manually on the command line."""
- return (os.environ.get('WINE') and
- os.environ.get('WINEPREFIX') and
- os.environ.get('WINESERVER'))
-
-
def PlatformNames():
"""Return an array of string to be used in paths for the platform
(e.g. suppressions, gtest filters, ignore files etc.)
The first element of the array describes the 'main' platform
"""
- # This has to be before IsLinux()
- if IsWine():
- return ['wine', 'win32']
if IsLinux():
return ['linux']
if IsMac():