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

Side by Side Diff: test/win/gyptest-macro-targetfilename.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/win/gyptest-link-enable-winrt.py ('k') | no next file » | 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) 2014 Google Inc. All rights reserved. 3 # Copyright (c) 2014 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 macro expansion of $(TargetFileName) is handled. 8 Make sure macro expansion of $(TargetFileName) is handled.
9 """ 9 """
10 10
11 import TestGyp 11 import TestGyp
12 12
13 import os
13 import sys 14 import sys
14 15
15 if sys.platform == 'win32': 16 if sys.platform == 'win32':
16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) 17 test = TestGyp.TestGyp(formats=['msvs', 'ninja'])
17 18 if not (test.format == 'msvs' and
18 CHDIR = 'vs-macros' 19 int(os.environ.get('GYP_MSVS_VERSION', 0)) == 2013):
19 test.run_gyp('targetfilename.gyp', chdir=CHDIR) 20 CHDIR = 'vs-macros'
20 test.build('targetfilename.gyp', test.ALL, chdir=CHDIR) 21 test.run_gyp('targetfilename.gyp', chdir=CHDIR)
21 test.built_file_must_exist('test_targetfilename_executable.exe', chdir=CHDIR) 22 test.build('targetfilename.gyp', test.ALL, chdir=CHDIR)
22 test.built_file_must_exist('test_targetfilename_loadable_module.dll', 23 test.built_file_must_exist('test_targetfilename_executable.exe', chdir=CHDIR )
23 chdir=CHDIR) 24 test.built_file_must_exist('test_targetfilename_loadable_module.dll',
24 test.built_file_must_exist('test_targetfilename_shared_library.dll', 25 chdir=CHDIR)
25 chdir=CHDIR) 26 test.built_file_must_exist('test_targetfilename_shared_library.dll',
26 test.built_file_must_exist('test_targetfilename_static_library.lib', 27 chdir=CHDIR)
27 chdir=CHDIR) 28 test.built_file_must_exist('test_targetfilename_static_library.lib',
28 test.built_file_must_exist('test_targetfilename_product_extension.foo', 29 chdir=CHDIR)
29 chdir=CHDIR) 30 test.built_file_must_exist('test_targetfilename_product_extension.foo',
30 test.pass_test() 31 chdir=CHDIR)
32 test.pass_test()
OLDNEW
« no previous file with comments | « test/win/gyptest-link-enable-winrt.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698