summaryrefslogtreecommitdiff
path: root/deps/gyp/test/mac/gyptest-objc-arc.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/mac/gyptest-objc-arc.py')
-rwxr-xr-xdeps/gyp/test/mac/gyptest-objc-arc.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/deps/gyp/test/mac/gyptest-objc-arc.py b/deps/gyp/test/mac/gyptest-objc-arc.py
deleted file mode 100755
index b3192a19dd..0000000000
--- a/deps/gyp/test/mac/gyptest-objc-arc.py
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/usr/bin/env python
-
-# Copyright (c) 2013 Google Inc. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-"""
-Verifies that ARC objc settings are handled correctly.
-"""
-
-import TestGyp
-
-import sys
-
-if sys.platform == 'darwin':
- # set |match| to ignore build stderr output.
- test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode'],
- match = lambda a, b: True)
-
- CHDIR = 'objc-arc'
- test.run_gyp('test.gyp', chdir=CHDIR)
-
- test.build('test.gyp', 'arc_enabled', chdir=CHDIR)
- test.build('test.gyp', 'arc_disabled', chdir=CHDIR)
-
- test.pass_test()