1#!/usr/bin/env python 2 3# Copyright (c) 2013 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 ARC objc settings are handled correctly. 9""" 10 11import TestGyp 12 13import sys 14 15if sys.platform == 'darwin': 16 # set |match| to ignore build stderr output. 17 test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode'], 18 match = lambda a, b: True) 19 20 CHDIR = 'objc-arc' 21 test.run_gyp('test.gyp', chdir=CHDIR) 22 23 test.build('test.gyp', 'arc_enabled', chdir=CHDIR) 24 test.build('test.gyp', 'arc_disabled', chdir=CHDIR) 25 26 test.pass_test() 27