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"""
8Verifies that the global xcode_settings processing doesn't throw.
9Regression test for http://crbug.com/109163
10"""
11
12import TestGyp
13
14import sys
15
16if sys.platform == 'darwin':
17  test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode'])
18  test.run_gyp('src/dir2/dir2.gyp', chdir='global-settings', depth='src')
19  # run_gyp shouldn't throw.
20
21  # Check that BUILT_PRODUCTS_DIR was set correctly, too.
22  test.build('dir2/dir2.gyp', 'dir2_target', chdir='global-settings/src',
23             SYMROOT='../build')
24  test.built_file_must_exist('file.txt', chdir='global-settings/src')
25
26  test.pass_test()
27