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

Unified Diff: test/rules-rebuild/gyptest-default.py

Issue 647043003: Switch to 2013 now that it's what's on the bots (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: disable non-working msvs tests Created 6 years, 2 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 | « buildbot/buildbot_run.py ('k') | test/win/gyptest-link-enable-winrt.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/rules-rebuild/gyptest-default.py
diff --git a/test/rules-rebuild/gyptest-default.py b/test/rules-rebuild/gyptest-default.py
index ac3f0209aa042996a3a5a6df01b2059d2288ad44..2ac8f3900b2deac2638d356960366de3f2fa53b9 100755
--- a/test/rules-rebuild/gyptest-default.py
+++ b/test/rules-rebuild/gyptest-default.py
@@ -11,7 +11,15 @@ correctly when the inputs change.
import TestGyp
+import os
+import sys
+
test = TestGyp.TestGyp(workdir='workarea_default')
+if (test.format == 'msvs' and
+ int(os.environ.get('GYP_MSVS_VERSION', 0)) == 2013):
+ print 'This test is broken on VS2013. https://code.google.com/p/gyp/issues/detail?id=465'
+ sys.exit(0)
+
test.run_gyp('same_target.gyp', chdir='src')
« no previous file with comments | « buildbot/buildbot_run.py ('k') | test/win/gyptest-link-enable-winrt.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698