| OLD | NEW |
| 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 from __future__ import print_function |
| 12 |
| 11 import TestGyp | 13 import TestGyp |
| 12 | 14 |
| 13 import os | 15 import os |
| 14 import sys | 16 import sys |
| 15 | 17 |
| 16 if sys.platform == 'win32': | 18 if sys.platform == 'win32': |
| 17 print "This test is currently disabled: https://crbug.com/483696." | 19 print("This test is currently disabled: https://crbug.com/483696.") |
| 18 sys.exit(0) | 20 sys.exit(0) |
| 19 | 21 |
| 20 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) | 22 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) |
| 21 if not (test.format == 'msvs' and | 23 if not (test.format == 'msvs' and |
| 22 int(os.environ.get('GYP_MSVS_VERSION', 0)) == 2013): | 24 int(os.environ.get('GYP_MSVS_VERSION', 0)) == 2013): |
| 23 CHDIR = 'vs-macros' | 25 CHDIR = 'vs-macros' |
| 24 test.run_gyp('targetfilename.gyp', chdir=CHDIR) | 26 test.run_gyp('targetfilename.gyp', chdir=CHDIR) |
| 25 test.build('targetfilename.gyp', test.ALL, chdir=CHDIR) | 27 test.build('targetfilename.gyp', test.ALL, chdir=CHDIR) |
| 26 test.built_file_must_exist('test_targetfilename_executable.exe', chdir=CHDIR
) | 28 test.built_file_must_exist('test_targetfilename_executable.exe', chdir=CHDIR
) |
| 27 test.built_file_must_exist('test_targetfilename_loadable_module.dll', | 29 test.built_file_must_exist('test_targetfilename_loadable_module.dll', |
| 28 chdir=CHDIR) | 30 chdir=CHDIR) |
| 29 test.built_file_must_exist('test_targetfilename_shared_library.dll', | 31 test.built_file_must_exist('test_targetfilename_shared_library.dll', |
| 30 chdir=CHDIR) | 32 chdir=CHDIR) |
| 31 test.built_file_must_exist('test_targetfilename_static_library.lib', | 33 test.built_file_must_exist('test_targetfilename_static_library.lib', |
| 32 chdir=CHDIR) | 34 chdir=CHDIR) |
| 33 test.built_file_must_exist('test_targetfilename_product_extension.foo', | 35 test.built_file_must_exist('test_targetfilename_product_extension.foo', |
| 34 chdir=CHDIR) | 36 chdir=CHDIR) |
| 35 test.pass_test() | 37 test.pass_test() |
| OLD | NEW |