Home | History | Annotate | Download | only in win
      1 #!/usr/bin/env python
      2 
      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
      5 # found in the LICENSE file.
      6 
      7 """
      8 Make sure macro expansion of $(TargetFileName) is handled.
      9 """
     10 
     11 import TestGyp
     12 
     13 import os
     14 import sys
     15 
     16 if sys.platform == 'win32':
     17   print "This test is currently disabled: https://crbug.com/483696."
     18   sys.exit(0)
     19 
     20   test = TestGyp.TestGyp(formats=['msvs', 'ninja'])
     21   if not (test.format == 'msvs' and
     22           int(os.environ.get('GYP_MSVS_VERSION', 0)) == 2013):
     23     CHDIR = 'vs-macros'
     24     test.run_gyp('targetfilename.gyp', chdir=CHDIR)
     25     test.build('targetfilename.gyp', test.ALL, chdir=CHDIR)
     26     test.built_file_must_exist('test_targetfilename_executable.exe', chdir=CHDIR)
     27     test.built_file_must_exist('test_targetfilename_loadable_module.dll',
     28                               chdir=CHDIR)
     29     test.built_file_must_exist('test_targetfilename_shared_library.dll',
     30                               chdir=CHDIR)
     31     test.built_file_must_exist('test_targetfilename_static_library.lib',
     32                               chdir=CHDIR)
     33     test.built_file_must_exist('test_targetfilename_product_extension.foo',
     34                               chdir=CHDIR)
     35     test.pass_test()
     36