Home | History | Annotate | Download | only in win
      1 #!/usr/bin/env python
      2 
      3 # Copyright (c) 2012 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 we build and include .rc files.
      9 """
     10 
     11 import TestGyp
     12 
     13 import sys
     14 
     15 if sys.platform == 'win32':
     16   print "This test is currently disabled: https://crbug.com/483696."
     17   sys.exit(0)
     18 
     19   test = TestGyp.TestGyp(formats=['msvs', 'ninja'])
     20 
     21   CHDIR = 'rc-build'
     22   test.run_gyp('hello.gyp', chdir=CHDIR)
     23   test.build('hello.gyp', test.ALL, chdir=CHDIR)
     24   test.up_to_date('hello.gyp', 'resource_only_dll', chdir=CHDIR)
     25   test.run_built_executable('with_resources', chdir=CHDIR, status=4)
     26 
     27   test.pass_test()
     28