blob: a6e4d360f64b170f644de424ef3e8d25382dfd20 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001#!/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"""
8Make sure we build and include .rc files.
9"""
10
11import TestGyp
12
13import sys
14
15if 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()