Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2278)

Unified Diff: tools/valgrind/common.py

Issue 6541014: Remove Wine + Valgrind code since nobody is working on it.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/valgrind/chrome_tests.py ('k') | tools/valgrind/gtest_exclude/base_unittests.gtest_wine.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/valgrind/common.py
===================================================================
--- tools/valgrind/common.py (revision 75330)
+++ tools/valgrind/common.py (working copy)
@@ -134,22 +134,11 @@
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():
« no previous file with comments | « tools/valgrind/chrome_tests.py ('k') | tools/valgrind/gtest_exclude/base_unittests.gtest_wine.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698