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

Side by Side Diff: test/win/gyptest-link-enable-winrt.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, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/rules-rebuild/gyptest-default.py ('k') | test/win/gyptest-macro-targetfilename.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 2
3 # Copyright (c) 2013 Google Inc. All rights reserved. 3 # Copyright (c) 2013 Google Inc. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 """ 7 """
8 Make sure msvs_enable_winrt works correctly. 8 Make sure msvs_enable_winrt works correctly.
9 """ 9 """
10 10
11 import TestGyp 11 import TestGyp
12 12
13 import os 13 import os
14 import sys 14 import sys
15 import struct 15 import struct
16 16
17 CHDIR = 'enable-winrt' 17 CHDIR = 'enable-winrt'
18 18
19 print 'This test is not currently working on the bots: https://code.google.com/p /gyp/issues/detail?id=466'
20 sys.exit(0)
21
19 if (sys.platform == 'win32' and 22 if (sys.platform == 'win32' and
20 int(os.environ.get('GYP_MSVS_VERSION', 0)) >= 2013): 23 int(os.environ.get('GYP_MSVS_VERSION', 0)) >= 2013):
21 test = TestGyp.TestGyp(formats=['msvs']) 24 test = TestGyp.TestGyp(formats=['msvs'])
22 25
23 test.run_gyp('enable-winrt.gyp', chdir=CHDIR) 26 test.run_gyp('enable-winrt.gyp', chdir=CHDIR)
24 27
25 test.build('enable-winrt.gyp', 'enable_winrt_dll', chdir=CHDIR) 28 test.build('enable-winrt.gyp', 'enable_winrt_dll', chdir=CHDIR)
26 29
27 test.build('enable-winrt.gyp', 'enable_winrt_missing_dll', chdir=CHDIR, 30 test.build('enable-winrt.gyp', 'enable_winrt_missing_dll', chdir=CHDIR,
28 status=1) 31 status=1)
29 32
30 test.build('enable-winrt.gyp', 'enable_winrt_winphone_dll', chdir=CHDIR) 33 test.build('enable-winrt.gyp', 'enable_winrt_winphone_dll', chdir=CHDIR)
31 34
32 test.pass_test() 35 test.pass_test()
OLDNEW
« no previous file with comments | « test/rules-rebuild/gyptest-default.py ('k') | test/win/gyptest-macro-targetfilename.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698